Skip to content

Commit

Permalink
Reset versions and update build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mao committed Jan 6, 2023
1 parent e20da0d commit 6ed05b6
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 14 deletions.
10 changes: 0 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,6 @@ dependencies {
bots project(":example-bots")
}

test {
debugOptions {
enabled = true
host = 'localhost'
port = 5005
server = true
suspend = true
}
}

def serverJar = configurations.engine.singleFile

task buildMap(type: JavaExec, dependsOn: [':engine:build']) {
Expand Down
2 changes: 1 addition & 1 deletion client/visualizer/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export enum Mode {
*/
export function defaults(supplied?: any): Config {
let conf: Config = {
gameVersion: "2022.2.2.4", //TODO: Change this on each release!
gameVersion: "2.2.1", //TODO: Change this on each release!
fullscreen: false,
width: 600,
height: 600,
Expand Down
2 changes: 1 addition & 1 deletion client/visualizer/visualizer.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<div id="client" />
<script
type="text/javascript"
src="/clients/2022/out/app.js"
src="app.js"
charset="utf-8"
></script>
<script type="text/javascript">
Expand Down
2 changes: 2 additions & 0 deletions engine/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ repositories {

dependencies {
implementation(
[group: 'org.slf4j', name: 'slf4j-api', version: '2.0.6'],
[group: 'org.slf4j', name: 'slf4j-simple', version: '2.0.6'],
[group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'],
[group: 'commons-cli', name: 'commons-cli', version: '1.5.0'],
[group: 'commons-io', name: 'commons-io', version: '2.11.0'],
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.2.2.4";
public static final String SPEC_VERSION = "2.2.1";

// *********************************
// ****** 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 2022 game.* Current version: *2022.2.2.4*
*This is the formal specification of the Battlecode 2022 game.* Current version: *2.2.1*

**Welcome to Battlecode 2022: Mutation.**

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

# Appendix: Changelog

- Version 2.2.1 (January 6, 2023)
- Updated deploy scripts for new Battlecode infrastructure

- Version 2022.2.1.0 (January 26, 2022)
- Engine:
- Fix bug impacting correct Vortex Anomaly behavior
Expand Down

0 comments on commit 6ed05b6

Please sign in to comment.