Skip to content

Commit

Permalink
Release 1.12.1.0 !
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyettinger committed Nov 3, 2023
1 parent 555f5a5 commit d1451c0
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ java -jar gdx-liftoff-VERSION.jar

**You should use Java 17+ !** Android tools now require your installed JDK to be version 17 or higher.
You can still target other releases, as low as 8 typically, while building with any of the JDK versions 17 and up.
Java 21 is not recommended, though, because Gradle doesn't fully support it yet.

If you have any trouble, you can try our new [🐛Troubleshooting Guide🐛](Troubleshooting.md).

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ buildscript {
}
}

version = "1.12.1.0-SNAPSHOT"
version = "1.12.1.0"
mainClassName = 'gdx.liftoff.MainKt'
java.sourceCompatibility = JavaVersion.VERSION_1_8
java.targetCompatibility = JavaVersion.VERSION_1_8
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/gdx/liftoff/config/Configuration.kt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import gdx.liftoff.views.widgets.ScrollableTextArea
@Suppress("unused") // Fields accessed via reflection.
class Configuration {
companion object {
const val VERSION = "1.12.1.0-SNAPSHOT"
const val VERSION = "1.12.1.0"
const val WIDTH = 600
const val HEIGHT = 700
const val PREFERENCES_PATH = "gdx-liftoff-prefs"
Expand Down
1 change: 0 additions & 1 deletion src/main/kotlin/gdx/liftoff/data/platforms/Android.kt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ class Android : Platform {
override fun initiate(project: Project) {
// the AGP Upgrade Assistant doesn't recognize versions in properties files
project.rootGradle.buildDependencies.add("\"com.android.tools.build:gradle:8.1.2\"")
project.properties["android.useAndroidX"] = "true"
project.properties["android.enableR8.fullMode"] = "false"
addGradleTaskDescription(project, "lint", "performs Android project validation.")

Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.12.0.5
1.12.1.0

0 comments on commit d1451c0

Please sign in to comment.