From b9e94a972ba6aed81018835bb0a703fdd00971aa Mon Sep 17 00:00:00 2001 From: Jerry Mao Date: Tue, 4 Jan 2022 12:48:59 -0500 Subject: [PATCH] Release version 2022.0.1.1 --- client/visualizer/src/config.ts | 2 +- engine/src/main/battlecode/common/GameConstants.java | 2 +- gradle.properties | 2 +- specs/specs.md.html | 10 +++++++++- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/client/visualizer/src/config.ts b/client/visualizer/src/config.ts index 4b94a196..dc4f3f6b 100644 --- a/client/visualizer/src/config.ts +++ b/client/visualizer/src/config.ts @@ -144,7 +144,7 @@ export enum Mode { */ export function defaults(supplied?: any): Config { let conf: Config = { - gameVersion: "2022.0.1.0", //TODO: Change this on each release! + gameVersion: "2022.0.1.1", //TODO: Change this on each release! fullscreen: false, width: 600, height: 600, diff --git a/engine/src/main/battlecode/common/GameConstants.java b/engine/src/main/battlecode/common/GameConstants.java index 82b71a1e..87713b0b 100644 --- a/engine/src/main/battlecode/common/GameConstants.java +++ b/engine/src/main/battlecode/common/GameConstants.java @@ -9,7 +9,7 @@ public class GameConstants { /** * The current spec version the server compiles with. */ - public static final String SPEC_VERSION = "2022.0.1.0"; + public static final String SPEC_VERSION = "2022.0.1.1"; // ********************************* // ****** MAP CONSTANTS ************ diff --git a/gradle.properties b/gradle.properties index 7eda40cd..f8f15f1a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,4 +5,4 @@ maps=maptestsmall profilerEnabled=false source=src mapLocation=maps -release_version=2022.0.1.0 +release_version=2022.0.1.1 diff --git a/specs/specs.md.html b/specs/specs.md.html index e9041ecf..5c27e47d 100644 --- a/specs/specs.md.html +++ b/specs/specs.md.html @@ -17,7 +17,7 @@ # Formal specification -*This is the formal specification of the Battlecode 2022 game.* Current version: *2022.0.1.0* +*This is the formal specification of the Battlecode 2022 game.* Current version: *2022.0.1.1* **Welcome to Battlecode 2022: Mutation.** @@ -323,6 +323,14 @@ # Appendix: Changelog +- Version 2022.0.1.1 (January 4, 2022) + - Specs + - Clarify that Archons are not guaranteed to have ID at least 10,000 + - Update various URLs + - Engine + - Fix Archon damage to always be negative (ie. repair) + - Fix maximum value for communication array to actually be $2^{16}-1$ + - Version 2022.0.1.0 (January 3, 2022) - Initial release