Skip to content

Commit

Permalink
actually bump version number to 3.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
acrantel committed Jan 29, 2023
1 parent dd5af70 commit edb6365
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 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: "3.0.4", //TODO: Change this on each release!
gameVersion: "3.0.5", //TODO: Change this on each release!
year: year,
map_extension: 'map'+year.substring(2),
game_extension: 'bc'+year.substring(2),
Expand Down
4 changes: 2 additions & 2 deletions client/visualizer/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,10 +220,10 @@ export const SERVER_MAPS: Map<string, MapType> = new Map<string, MapType>([
["IslandHopping", MapType.INTL_QUALIFYING],
["Marsh", MapType.INTL_QUALIFYING],
["RaceToTheTop", MapType.INTL_QUALIFYING],
//["Repetition", MapType.INTL_QUALIFYING],
["Repetition", MapType.INTL_QUALIFYING],
["River", MapType.INTL_QUALIFYING],
["RockWall", MapType.INTL_QUALIFYING],
//["Sakura", MapType.INTL_QUALIFYING],
["Sakura", MapType.INTL_QUALIFYING],
["SoundWave", MapType.INTL_QUALIFYING],
["ThirtyFive", MapType.INTL_QUALIFYING],
["TimesUp", MapType.INTL_QUALIFYING],
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 = "3.0.4";
public static final String SPEC_VERSION = "3.0.5";

// *********************************
// ****** MAP CONSTANTS ************
Expand Down
5 changes: 4 additions & 1 deletion specs/specs.md.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

# Formal specification

*This is the formal specification of the Battlecode 2023 game.* Current version: *3.0.4*
*This is the formal specification of the Battlecode 2023 game.* Current version: *3.0.5*

**Welcome to Battlecode 2023: Tempest.**

Expand Down Expand Up @@ -291,6 +291,9 @@

# Appendix: Changelog

- Version 3.0.5 (January 29, 2023)
- Fix Repetition and Sakura maps

- Version 3.0.4 (January 28, 2023)
- International qualifiers map release

Expand Down

0 comments on commit edb6365

Please sign in to comment.