Bump version to 2.0.1

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
adlee-was-taken 2026-02-02 23:31:39 -05:00
parent a5d108f4f2
commit 4664aae8aa
2 changed files with 8 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[project]
name = "golfgame"
version = "0.1.0"
version = "2.0.1"
description = "6-Card Golf card game with AI opponents"
readme = "README.md"
requires-python = ">=3.11"
@ -27,6 +27,12 @@ dependencies = [
"python-dotenv>=1.0.0",
# V2: Event sourcing infrastructure
"asyncpg>=0.29.0",
"redis>=5.0.0",
# V2: Authentication
"bcrypt>=4.1.0",
"resend>=2.0.0",
# V2: Production monitoring (optional but recommended)
"sentry-sdk[fastapi]>=1.40.0",
]
[project.optional-dependencies]

View File

@ -251,7 +251,7 @@ async def _close_all_websockets():
app = FastAPI(
title="Golf Card Game",
debug=config.DEBUG,
version="0.1.0",
version="2.0.1",
lifespan=lifespan,
)