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 @@
- + 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 @@

- + @@ -288,7 +288,7 @@

Waiting for host to start the game...

- + 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, )