From f37f2790985f6760d1d6c481ad9ff1fc6cd142b9 Mon Sep 17 00:00:00 2001 From: adlee-was-taken Date: Sat, 18 Apr 2026 00:50:30 -0400 Subject: [PATCH] chore: bump version to 3.3.5 Covers: game-lifecycle DB fixes (stranded active games, populated metadata, winner_id, stats idempotency) and staging leaderboard include-test override. Also aligns FastAPI app version in server/main.py (was stuck at 3.2.0) with the actual release. Co-Authored-By: Claude Opus 4.7 (1M context) --- client/admin.html | 2 +- client/index.html | 4 ++-- pyproject.toml | 2 +- server/main.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/client/admin.html b/client/admin.html index 71aeebf..d798089 100644 --- a/client/admin.html +++ b/client/admin.html @@ -400,7 +400,7 @@
-
v3.3.4 © Aaron D. Lee
+
v3.3.5 © Aaron D. Lee
diff --git a/client/index.html b/client/index.html index 9add284..22e8f3f 100644 --- a/client/index.html +++ b/client/index.html @@ -55,7 +55,7 @@

-
v3.3.4 © Aaron D. Lee
+
v3.3.5 © Aaron D. Lee
@@ -288,7 +288,7 @@

Waiting for host to start the game...

-
v3.3.4 © Aaron D. Lee
+
v3.3.5 © Aaron D. Lee
diff --git a/pyproject.toml b/pyproject.toml index 0a1727c..a33a16a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "golfgame" -version = "3.3.4" +version = "3.3.5" description = "6-Card Golf card game with AI opponents" readme = "README.md" requires-python = ">=3.11" diff --git a/server/main.py b/server/main.py index 80c03b6..c99b075 100644 --- a/server/main.py +++ b/server/main.py @@ -432,7 +432,7 @@ async def _close_all_websockets(): app = FastAPI( title="Golf Card Game", debug=config.DEBUG, - version="3.2.0", + version="3.3.5", lifespan=lifespan, )