Skip to content

Commit 89407e5

Browse files
committed
release: 22.1.0
1 parent c3cd1d8 commit 89407e5

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
lines changed

.idea

CHANGELOG.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changelog
2-
All notable changes to this project will be documented in this file.
2+
All notable changes to this project are documented in this file.
33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
44

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

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

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

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

30-
## [22.0.1](https://github.com/software-challenge/backend/commits/22.0.1) - 2021-06-25
31-
### Ostseeschach
34+
## [22.0.1](https://github.com/software-challenge/backend/commits/22.0.1) Adjust Ostseeschach plugin - 2021-06-25
3235
- Implemented proper winner calculation
3336
- Added some utility methods
3437
- Adjusted XML

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
socha.gameName=ostseeschach
22
socha.version.year=22
3-
socha.version.minor=00
4-
socha.version.patch=03
3+
socha.version.minor=01
4+
socha.version.patch=00

gradle/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ tasks {
9595

9696
println("Version: $newVersion")
9797
println("Beschreibung: $desc")
98-
exec { commandLine("git", "add", "gradle.properties") }
98+
exec { commandLine("git", "add", "gradle.properties", "CHANGELOG.md") }
9999
exec { commandLine("git", "commit", "-m", "release: $newVersion") }
100100
exec { commandLine("git", "tag", newVersion, "-m", desc) }
101101
exec { commandLine("git", "push", "--follow-tags") }

player/configuration/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ application {
1313

1414
repositories {
1515
jcenter()
16-
maven("http://dist.wso2.org/maven2")
16+
maven("https://dist.wso2.org/maven2")
1717
maven("https://jitpack.io")
1818
}
1919

0 commit comments

Comments
 (0)