Skip to content

Commit

Permalink
Merge pull request #68 from battlecode/engine-with-client-bump-webinfra
Browse files Browse the repository at this point in the history
Bump and fix version numbers
  • Loading branch information
n8kim1 authored Jan 5, 2023
2 parents 3cbb6f1 + d0fccee commit 9e142dc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/visualizer/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
2 changes: 1 addition & 1 deletion engine/src/main/battlecode/common/GameConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -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 ************
Expand Down
4 changes: 3 additions & 1 deletion specs/specs.md.html
Original file line number Diff line number Diff line change
Expand Up @@ -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.**

Expand Down

0 comments on commit 9e142dc

Please sign in to comment.