Skip to content

Commit

Permalink
bump: version 1.2.1 → 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nbrugger-tgm committed Feb 8, 2021
1 parent b1715cb commit e329c46
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## v1.3.0 (2021-02-08)

### Fix

- use implementation instead of interface
- stop crash on `NotImplementedException`
- restrict access to change robot register
- `entitys` -> `entities` typo in path
- wrong server warning

### Feat

- enable robot endpoints for consumers

## v1.2.1 (2021-02-07)

### Fix
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.2.1
# Game Controller - 1.3.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.2.1", "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": "1.3.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.2.1",
"version": "v1.3.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.2.1";
private const string version = "1.3.0";

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

0 comments on commit e329c46

Please sign in to comment.