Skip to content

Commit

Permalink
bump game version to 2.1.0 while also now depending on nui 3.1.0 (no …
Browse files Browse the repository at this point in the history
…snapshot anymore)
  • Loading branch information
Cervator committed Jan 12, 2022
1 parent ef98800 commit 62b07db
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ allprojects {
apply plugin: 'eclipse'
apply plugin: 'idea'

version = '2.0.1'
version = '2.1.0'
ext {
appName = 'DestinationSol'
gdxVersion = '1.9.14'
// The LibGDX controllers library is versioned differently to the main LibGDX versions.
// See https://github.com/libgdx/gdx-controllers/wiki/Compatibility for compatible versions.
gdxControllersVersion = '2.1.0'
roboVMVersion = '2.3.3'
nuiVersion = '3.1.0-SNAPSHOT'
nuiVersion = '3.1.0'
}
}

Expand Down
2 changes: 1 addition & 1 deletion engine/src/main/java/org/destinationsol/Const.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class Const {
public static final float REAL_TIME_STEP = 1.0f / 60.0f;
public static final float CHUNK_SIZE = 20f;
public static final int ITEM_GROUPS_PER_PAGE = 8;
public static final String VERSION = "2.0.1";
public static final String VERSION = "2.1.0";
public static final float FRICTION = .5f;
public static final float IMPULSE_TO_COLL_VOL = 2f;

Expand Down
2 changes: 1 addition & 1 deletion engine/src/main/resources/org/destinationsol/module.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id" : "engine",
"version" : "2.0.1",
"version" : "2.1.0",
"displayName" : "Destination Sol Engine",
"description" : "Engine content"
}
2 changes: 1 addition & 1 deletion modules/core/module.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id" : "core",
"version" : "2.0.1",
"version" : "2.1.0",
"displayName" : "Destination Sol core content",
"description" : "Core content that is recommended, but not needed, for the game to function."
}

0 comments on commit 62b07db

Please sign in to comment.