Skip to content

Commit

Permalink
Release version 2022.0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mao committed Jan 10, 2022
1 parent 6318ff4 commit f87cec2
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/visualizer/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export enum Mode {
*/
export function defaults(supplied?: any): Config {
let conf: Config = {
gameVersion: "2022.0.2.0", //TODO: Change this on each release!
gameVersion: "2022.0.3.0", //TODO: Change this on each release!
fullscreen: false,
width: 600,
height: 600,
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 @@ -9,7 +9,7 @@ public class GameConstants {
/**
* The current spec version the server compiles with.
*/
public static final String SPEC_VERSION = "2022.0.2.0";
public static final String SPEC_VERSION = "2022.0.3.0";

// *********************************
// ****** MAP CONSTANTS ************
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ maps=maptestsmall
profilerEnabled=false
source=src
mapLocation=maps
release_version=2022.0.2.0
release_version=2022.0.3.0
13 changes: 12 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 2022 game.* Current version: *2022.0.2.0*
*This is the formal specification of the Battlecode 2022 game.* Current version: *2022.0.3.0*

**Welcome to Battlecode 2022: Mutation.**

Expand Down Expand Up @@ -323,6 +323,16 @@

# Appendix: Changelog

- Version 2022.0.3.0 (January 9, 2022)
- Engine
- (New feature) Add overloads for sensing nearby locations with metals
- Do not dump debug map information at start of match
- Client
- Track HP change on mutations and fix DP display
- Running averages for lead and gold income
- Other
- Javadocs are 2022, not 2017

- Version 2022.0.2.0 (January 5, 2022)
- Engine
- (New feature) Add `rc.senseNearbyLocationsWithLead` and `rc.senseNearbyLocationsWithGold`
Expand All @@ -334,6 +344,7 @@
- Fix Vortex anomaly rendering
- Other
- Improvements to release scripts

- Version 2022.0.1.1 (January 4, 2022)
- Specs
- Clarify that Archons are not guaranteed to have ID at least 10,000
Expand Down

0 comments on commit f87cec2

Please sign in to comment.