diff --git a/client/visualizer/src/config.ts b/client/visualizer/src/config.ts index 42e7ac5f..00e832f2 100644 --- a/client/visualizer/src/config.ts +++ b/client/visualizer/src/config.ts @@ -154,7 +154,7 @@ export enum Mode { export function defaults(supplied?: any): Config { let year = "2023" let conf: Config = { - gameVersion: year+".0.0.0", //TODO: Change this on each release! + gameVersion: "0.1.0", //TODO: Change this on each release! year: year, map_extension: 'map'+year.substring(2), game_extension: 'bc'+year.substring(2), diff --git a/engine/src/main/battlecode/common/GameConstants.java b/engine/src/main/battlecode/common/GameConstants.java index 87f9c3fc..94acb18b 100644 --- a/engine/src/main/battlecode/common/GameConstants.java +++ b/engine/src/main/battlecode/common/GameConstants.java @@ -10,7 +10,7 @@ public class GameConstants { /** * The current spec version the server compiles with. */ - public static final String SPEC_VERSION = "2022.2.2.0"; + public static final String SPEC_VERSION = "0.1.0"; // ********************************* // ****** MAP CONSTANTS ************ diff --git a/specs/specs.md.html b/specs/specs.md.html index ae3a30e8..80e230d0 100644 --- a/specs/specs.md.html +++ b/specs/specs.md.html @@ -17,7 +17,9 @@ # Formal specification -*This is the formal specification of the Battlecode 2022 game.* Current version: *2022.2.2.0* +*This is the formal specification of the Battlecode 2023 game.* Current version: *0.1.0* + +2023 specs coming soon; 2022 listed for now **Welcome to Battlecode 2022: Mutation.**