Skip to content

Commit

Permalink
release: 22.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xeruf committed Nov 15, 2021
1 parent c3cd1d8 commit 89407e5
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .idea
Submodule .idea updated 1 files
+19 −1 codeStyles/Project.xml
13 changes: 8 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changelog
All notable changes to this project will be documented in this file.
All notable changes to this project are documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),

The `x.y.z` version is tracked in [gradle.properties](./gradle.properties) to enable programmatic updating via the Gradle `release` task.
Expand All @@ -10,13 +10,17 @@ The version should always be in sync with the [GUI](https://github.com/software-
A `y` version of 0 marks the beta of the current year
and likely contains breaking changes between patches.

## [22.1.0](https://github.com/software-challenge/backend/commits/22.1.0) - 2021-09
## [22.1.0](https://github.com/software-challenge/backend/commits/22.1.0) Polish - 2021-11-15
- Ensure compatibility beyond Java 16
- Fix game ending a turn too late on round limit (7b096f105)
- Fix irritating error messages at game end
- Release TestClient

## [22.0.3](https://github.com/software-challenge/backend/commits/22.0.3) - 2021-07-26
- Fix simpleclient setup
- Only end game after full rounds

## [22.0.2](https://github.com/software-challenge/backend/commits/22.0.2) - 2021-07-16
## [22.0.2](https://github.com/software-challenge/backend/commits/22.0.2) Protocol Revamp - 2021-07-16
- Update documentation links
- Various improvements around testing
### Protocol
Expand All @@ -27,8 +31,7 @@ The version should always be in sync with the [GUI](https://github.com/software-
- Do not send repeated MoveRequests when pausing/unpausing
- Stop terminating client connections upon protocol issues ([6c6d6fa51](https://github.com/software-challenge/backend/commit/6c6d6fa51af71eea3914303cb886bd8b78be53a0))

## [22.0.1](https://github.com/software-challenge/backend/commits/22.0.1) - 2021-06-25
### Ostseeschach
## [22.0.1](https://github.com/software-challenge/backend/commits/22.0.1) Adjust Ostseeschach plugin - 2021-06-25
- Implemented proper winner calculation
- Added some utility methods
- Adjusted XML
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
socha.gameName=ostseeschach
socha.version.year=22
socha.version.minor=00
socha.version.patch=03
socha.version.minor=01
socha.version.patch=00
2 changes: 1 addition & 1 deletion gradle/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ tasks {

println("Version: $newVersion")
println("Beschreibung: $desc")
exec { commandLine("git", "add", "gradle.properties") }
exec { commandLine("git", "add", "gradle.properties", "CHANGELOG.md") }
exec { commandLine("git", "commit", "-m", "release: $newVersion") }
exec { commandLine("git", "tag", newVersion, "-m", desc) }
exec { commandLine("git", "push", "--follow-tags") }
Expand Down
2 changes: 1 addition & 1 deletion player/configuration/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ application {

repositories {
jcenter()
maven("http://dist.wso2.org/maven2")
maven("https://dist.wso2.org/maven2")
maven("https://jitpack.io")
}

Expand Down

0 comments on commit 89407e5

Please sign in to comment.