diff --git a/client/src/constants.ts b/client/src/constants.ts index cf48985d..a4c2ec9f 100644 --- a/client/src/constants.ts +++ b/client/src/constants.ts @@ -1,7 +1,7 @@ import { schema } from 'battlecode-schema' -export const GAME_VERSION = '2.0.2' -export const SPEC_VERSION = '2.0.2' +export const GAME_VERSION = '2.0.3' +export const SPEC_VERSION = '2.0.3' export const BATTLECODE_YEAR: number = 2024 export const MAP_SIZE_RANGE = { min: 30, @@ -38,6 +38,7 @@ export const ENGINE_BUILTIN_MAP_NAMES: string[] = [ 'Duck', 'Fountain', 'Hockey', + 'HungerGames', 'MazeRunner', 'Rivers', 'Snake', diff --git a/engine/src/main/battlecode/common/GameConstants.java b/engine/src/main/battlecode/common/GameConstants.java index 0a94b4e5..d9b8dc45 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 = "2.0.2"; + public static final String SPEC_VERSION = "2.0.3"; // ********************************* // ****** MAP CONSTANTS ************ diff --git a/specs/specs.md.html b/specs/specs.md.html index 00e03944..3bbe87bd 100644 --- a/specs/specs.md.html +++ b/specs/specs.md.html @@ -16,7 +16,7 @@ # **Formal specification** -_This is the formal specification of the Battlecode 2024 game._ Current version: *2.0.2* +_This is the formal specification of the Battlecode 2024 game._ Current version: *2.0.3* **Welcome to Battlecode 2024: Breadwars.** @@ -286,6 +286,10 @@ # **Appendix: Changelog** +- Version 2.0.3 (January 22, 2024) + - Client improvements + - Added HungerGames sprint 1 map + - Version 2.0.2 (January 20, 2024) - Engine fixes - Corrected issue where stun trap was using old cooldown (40)