Skip to content

Commit fb8fe1a

Browse files
author
nbrugger-tgm
committed
bump: version 2.13.2 → 2.13.3
1 parent d65b332 commit fb8fe1a

8 files changed

Lines changed: 15 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v2.13.3 (2021-04-26)
2+
3+
### Fix
4+
5+
- compiling failing
6+
17
## v2.13.2 (2021-04-26)
28

39
### Fix

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Game Controller - 2.13.2
1+
# Game Controller - 2.13.3
22

33
The Game Controller is an Web API controlling the logic/flow of one (or multiple) game sessions.
44

autogen-config/csharp-client.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"packageVersion":"2.13.2",
2+
"packageVersion":"2.13.3",
33
"optionalMethodArgument" : true,
44
"packageName" : "Tgm.Roborally.Api",
55
"netCoreProjectFile": true,

cz.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"commitizen": {"name": "cz_conventional_commits", "version": "2.13.2", "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", "server/src/Tgm.Roborally.Server/Startup.cs", "server/src/Tgm.Roborally.Server/Tgm.Roborally.Server.csproj", "client/src/Tgm.Roborally.Api/Tgm.Roborally.Api.csproj", "autogen-config/csharp-client.json"]}}
1+
{"commitizen": {"name": "cz_conventional_commits", "version": "2.13.3", "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", "server/src/Tgm.Roborally.Server/Startup.cs", "server/src/Tgm.Roborally.Server/Tgm.Roborally.Server.csproj", "client/src/Tgm.Roborally.Api/Tgm.Roborally.Api.csproj", "autogen-config/csharp-client.json"]}}

oas/game-engine.v1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"openapi": "3.0.0",
33
"info": {
44
"title": "Robot Rally Game logic engine",
5-
"version": "v2.13.2",
5+
"version": "v2.13.3",
66
"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",
77
"contact": {
88
"name": "Nils Brugger",

server/src/Tgm.Roborally.Server/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace Tgm.Roborally.Server {
1515
/// Program
1616
/// </summary>
1717
public class Program {
18-
private const string VERSION = "2.13.2";
18+
private const string VERSION = "2.13.3";
1919

2020
/// <summary>
2121
/// Main

server/src/Tgm.Roborally.Server/Startup.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ public void ConfigureServices(IServiceCollection services) {
6060

6161
services
6262
.AddSwaggerGen(setupAction: c => {
63-
c.SwaggerDoc("2.13.2", new OpenApiInfo {
64-
Version = "2.13.2",
63+
c.SwaggerDoc("2.13.3", new OpenApiInfo {
64+
Version = "2.13.3",
6565
Title = "Robot Rally Game logic engine",
6666
Description = "Robot Rally Game logic engine (ASP.NET Core 3.1)",
6767
Contact = new OpenApiContact {
@@ -96,7 +96,7 @@ public void Configure(IApplicationBuilder app, IHostingEnvironment env) {
9696
.UseSwagger(setupAction: c => { c.RouteTemplate = "swagger/{documentName}/openapi.json"; })
9797
.UseSwaggerUI(setupAction: c => {
9898
c.SwaggerEndpoint("/openapi-original.json", "Robot Rally (manual documentation)");
99-
c.SwaggerEndpoint("/swagger/2.13.2/openapi.json", "Robot Rally (autogenerated)");
99+
c.SwaggerEndpoint("/swagger/2.13.3/openapi.json", "Robot Rally (autogenerated)");
100100
});
101101
app.UseRouting();
102102
app.UseEndpoints(configure: endpoints => { endpoints.MapControllers(); });

server/src/Tgm.Roborally.Server/Tgm.Roborally.Server.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<RuntimeIdentifiers>win-x86;win-x64;linux-x64;linux-arm;linux-arm64;osx-x64</RuntimeIdentifiers>
1212
<LangVersion>9</LangVersion>
13-
<PackageVersion>2.13.2</PackageVersion>
13+
<PackageVersion>2.13.3</PackageVersion>
1414
<PackageProjectUrl>https://github.com/FactoryRally/game-controller/</PackageProjectUrl>
1515
<RepositoryUrl>https://github.com/FactoryRally/game-controller/</RepositoryUrl>
1616
<RepositoryType>github</RepositoryType>

0 commit comments

Comments
 (0)