diff --git a/CHANGELOG.md b/CHANGELOG.md index 509b8e6..b0398dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## v2.0.0 (2021-02-12) + +### Fix + +- add missing phase informations + +### Feat + +- add all game phases +- add delay before game deletion + ## v1.4.0 (2021-02-12) ### Feat diff --git a/README.md b/README.md index c899673..b44fee1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Game Controller - 1.4.0 +# Game Controller - 2.0.0 The Game Controller is an Web API controlling the logic/flow of one (or multiple) game sessions. diff --git a/cz.json b/cz.json index efdbcff..0ffac7e 100644 --- a/cz.json +++ b/cz.json @@ -1 +1 @@ -{"commitizen": {"name": "cz_conventional_commits", "version": "1.4.0", "tag_format": "v$major.$minor.$patch$prerelease", "update_changelog_on_bump": true, "version_files": ["oas/game-engine.v1.json", "README.md", "server/src/Tgm.Roborally.Server/Program.cs"]}} \ No newline at end of file +{"commitizen": {"name": "cz_conventional_commits", "version": "2.0.0", "tag_format": "v$major.$minor.$patch$prerelease", "update_changelog_on_bump": true, "version_files": ["oas/game-engine.v1.json", "README.md", "server/src/Tgm.Roborally.Server/Program.cs"]}} \ No newline at end of file diff --git a/oas/game-engine.v1.json b/oas/game-engine.v1.json index 31f1fb2..9dd9e0e 100644 --- a/oas/game-engine.v1.json +++ b/oas/game-engine.v1.json @@ -2,7 +2,7 @@ "openapi": "3.0.0", "info": { "title": "Robot Rally Game logic engine", - "version": "v1.4.0", + "version": "v2.0.0", "description": "This api controlls the flow of a game and provides it's data.\nIt is desiged to be RESTfull so the structure works simmilar as file system.\nThe service will run and only work in a local network, `game.host` is the IP of the Computer hosting the game and will be found via a IP scan", "contact": { "name": "Nils Brugger", diff --git a/server/src/Tgm.Roborally.Server/Program.cs b/server/src/Tgm.Roborally.Server/Program.cs index 9b9a050..796d36d 100644 --- a/server/src/Tgm.Roborally.Server/Program.cs +++ b/server/src/Tgm.Roborally.Server/Program.cs @@ -9,7 +9,7 @@ namespace Tgm.Roborally.Server { /// Program /// public class Program { - private const string version = "1.4.0"; + private const string version = "2.0.0"; /// /// Main