Skip to content

Commit

Permalink
prep release version
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-Ski committed Jul 2, 2023
1 parent c02c970 commit 9db88c5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[1.11.1]
[1.12.0]
- [BREAKING CHANGE] Added #touchCancelled to InputProcessor interface, see #6871.
- [BREAKING CHANGE] Android: Immersive mode is now true by default. Set `useImmersiveMode` config to `false` to disable it.
- [BREAKING CHANGE] iOS: Increased min supported iOS version to 11.0. Update your Info.plist file if necessary.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
public class DependencyBank {

// Versions
static String libgdxVersion = "1.11.0";
static String libgdxVersion = "1.12.0";
// Temporary snapshot version, we need a more dynamic solution for pointing to the latest nightly
static String libgdxNightlyVersion = "1.11.1-SNAPSHOT";
static String libgdxNightlyVersion = "1.12.1-SNAPSHOT";
static String roboVMVersion = "2.3.19";
static String buildToolsVersion = "33.0.2";
static String androidAPILevel = "32";
Expand Down
2 changes: 1 addition & 1 deletion gdx/src/com/badlogic/gdx/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author mzechner */
public class Version {
/** The current version of libGDX as a String in the major.minor.revision format **/
public static final String VERSION = "1.11.1";
public static final String VERSION = "1.12.0";

/** The current major version of libGDX **/
public static final int MAJOR;
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ org.gradle.configureondemand=false
android.useAndroidX=true

group=com.badlogicgames.gdx
version=1.11.1
version=1.12.0
POM_NAME=libGDX
POM_DESCRIPTION=Android/Desktop/iOS/HTML5 game development framework
POM_URL=https://github.com/libgdx/libgdx
Expand Down

0 comments on commit 9db88c5

Please sign in to comment.