Skip to content

Commit

Permalink
bump: version 1.4.0 → 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nbrugger-tgm committed Feb 12, 2021
1 parent c9fd0ab commit 82e7aad
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion cz.json
Original file line number Diff line number Diff line change
@@ -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"]}}
{"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"]}}
2 changes: 1 addition & 1 deletion oas/game-engine.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion server/src/Tgm.Roborally.Server/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Tgm.Roborally.Server {
/// Program
/// </summary>
public class Program {
private const string version = "1.4.0";
private const string version = "2.0.0";

/// <summary>
/// Main
Expand Down

0 comments on commit 82e7aad

Please sign in to comment.