Skip to content

Commit

Permalink
Correct the versions for TeaVM projects.
Browse files Browse the repository at this point in the history
They were quite wrong, with teavm-core trying to fetch the non-existent 10.0.0 version. The third-party extension, digital, was also updated.
  • Loading branch information
tommyettinger committed Jan 15, 2025
1 parent 4e73dbb commit 11be70b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1347,7 +1347,7 @@ class Cringe : ThirdPartyExtension() {
@Extension
class Digital : ThirdPartyExtension() {
override val id = "digital"
override val defaultVersion = "0.5.4"
override val defaultVersion = "0.6.0"
override val url = "https://github.com/tommyettinger/digital"
override val group = "com.github.tommyettinger"
override val name = "digital"
Expand Down
4 changes: 2 additions & 2 deletions src/main/kotlin/gdx/liftoff/data/project/Data.kt
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ data class AdvancedProjectData(
*/
val gdxTeaVMVersion: String
get() = Repository.MavenCentral.getLatestVersion(group = "com.github.xpenatan.gdx-teavm", name = "backend-teavm")
?: "1.0.2"
?: "1.0.5"

/**
* Version of the main TeaVM project.
*/
val teaVMVersion: String
get() = Repository.MavenCentral.getLatestVersion(group = "org.teavm", name = "teavm-core")
?: "10.0.0"
?: "0.11.0"

/**
* Version of the Gretty Gradle plugin used to serve compiled JavaScript applications.
Expand Down

0 comments on commit 11be70b

Please sign in to comment.