chore: bump version to 3.3.5
Some checks failed
Build & Deploy Staging / build-and-deploy (release) Failing after 5s

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) <noreply@anthropic.com>
This commit is contained in:
adlee-was-taken
2026-04-18 00:50:30 -04:00
parent c02b0054c2
commit f37f279098
4 changed files with 5 additions and 5 deletions

View File

@@ -400,7 +400,7 @@
<!-- Toast Container --> <!-- Toast Container -->
<div id="toast-container"></div> <div id="toast-container"></div>
<footer class="app-footer" style="text-align: center; padding: 16px; color: #888; font-size: 12px;">v3.3.4 &copy; Aaron D. Lee</footer> <footer class="app-footer" style="text-align: center; padding: 16px; color: #888; font-size: 12px;">v3.3.5 &copy; Aaron D. Lee</footer>
<script src="admin.js"></script> <script src="admin.js"></script>
</body> </body>

View File

@@ -55,7 +55,7 @@
<p id="lobby-error" class="error"></p> <p id="lobby-error" class="error"></p>
<footer class="app-footer">v3.3.4 &copy; Aaron D. Lee</footer> <footer class="app-footer">v3.3.5 &copy; Aaron D. Lee</footer>
</div> </div>
<!-- Matchmaking Screen --> <!-- Matchmaking Screen -->
@@ -288,7 +288,7 @@
<p id="waiting-message" class="info">Waiting for host to start the game...</p> <p id="waiting-message" class="info">Waiting for host to start the game...</p>
</div> </div>
<footer class="app-footer">v3.3.4 &copy; Aaron D. Lee</footer> <footer class="app-footer">v3.3.5 &copy; Aaron D. Lee</footer>
</div> </div>
<!-- Game Screen --> <!-- Game Screen -->

View File

@@ -1,6 +1,6 @@
[project] [project]
name = "golfgame" name = "golfgame"
version = "3.3.4" version = "3.3.5"
description = "6-Card Golf card game with AI opponents" description = "6-Card Golf card game with AI opponents"
readme = "README.md" readme = "README.md"
requires-python = ">=3.11" requires-python = ">=3.11"

View File

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