File tree Expand file tree Collapse file tree 9 files changed +11
-14
lines changed
main/kotlin/elide/tool/cli/cmd/tool/javac
graalvm-kt/src/main/kotlin/elide/runtime/gvm/kotlin
tooling/src/main/kotlin/elide/tooling/jvm
elide-build/src/main/kotlin/elide/internal/conventions Expand file tree Collapse file tree 9 files changed +11
-14
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ versions.java.language = 21
7979versions.java.toolchain = 25
8080versions.java.minimum = 21
8181versions.java.target = 21
82- versions.kotlin.sdk = 2.3.0-RC
82+ versions.kotlin.sdk = 2.3.0
8383versions.kotlin.language = 2.1
8484versions.android.sdk.target = 33
8585
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ kotest-plugin = "0.8.18"
137137kotlin-compile-testing = " 1.6.0"
138138kotlin-dataframe = " 0.11.0"
139139kotlin-language = " 2.1"
140- kotlin-sdk = " 2.3.0-RC "
140+ kotlin-sdk = " 2.3.0"
141141kotlinpoet = " 2.2.0"
142142kotlinx-abiValidator = " 0.18.1"
143143kotlinx-benchmark = " 0.4.13"
Original file line number Diff line number Diff line change @@ -114,10 +114,7 @@ import elide.tooling.jvm.javac
114114 }
115115 success()
116116 }
117- else -> {
118- val errorMessage = toolErr?.message ? : " Failed to compile"
119- err(errorMessage)
120- }
117+ else -> err(toolErr?.message ? : " Failed to compile" )
121118 }
122119 }
123120
Original file line number Diff line number Diff line change 11plugins {
2- kotlin(" jvm" ) version " 2.3.0-RC "
2+ kotlin(" jvm" ) version " 2.3.0"
33}
44
55tasks.withType< org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile > ().configureEach {
@@ -8,6 +8,6 @@ tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile>().configureEa
88
99dependencies {
1010 implementation(" com.google.guava:guava:33.4.8-jre" )
11- testImplementation(" org.jetbrains.kotlin:kotlin-test:2.3.0-RC " )
11+ testImplementation(" org.jetbrains.kotlin:kotlin-test:2.3.0" )
1212}
1313
Original file line number Diff line number Diff line change 11plugins {
2- kotlin(" jvm" ) version " 2.3.0-RC "
2+ kotlin(" jvm" ) version " 2.3.0"
33}
44
55tasks.withType< org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile > ().configureEach {
@@ -8,6 +8,6 @@ tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile>().configureEa
88
99dependencies {
1010 implementation(" com.google.guava:guava:33.4.8-jre" )
11- testImplementation(" org.jetbrains.kotlin:kotlin-test:2.3.0-RC " )
11+ testImplementation(" org.jetbrains.kotlin:kotlin-test:2.3.0" )
1212}
1313
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ import elide.runtime.gvm.kotlin.feature.KotlinResource
2727private const val KOTLIN_ID = " kotlin"
2828private const val KOTLIN_NAME = " Kotlin"
2929private const val KOTLIN_IMPL = " Kotlin/JVM (Espresso)"
30- private const val KOTLIN_IMPL_VERSION = " 2.3.0-RC "
30+ private const val KOTLIN_IMPL_VERSION = " 2.3.0"
3131private const val KOTLIN_MIME_TYPE = " application/x-kotlin"
3232
3333/* *
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import elide.tooling.project.ElideConfiguredProject
2424public object JvmLibraries {
2525 // @TODO: don't hard-code any of this
2626 public const val ELIDE_VERSION : String = " 1.0.0-beta11-rc3"
27- public const val EMBEDDED_KOTLIN : String = " 2.3.0-RC "
27+ public const val EMBEDDED_KOTLIN : String = " 2.3.0"
2828
2929 public const val EMBEDDED_JUNIT_VERSION : String = " 5.13.1"
3030 public const val EMBEDDED_JUNIT_PLATFORM_VERSION : String = " 1.13.1"
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ public object Constants {
8484 const val KOTLIN = " versions.kotlin.language"
8585
8686 /* * Constant: default Kotlin SDK version if no other version is defined. */
87- const val KOTLIN_SDK_PIN = " 2.3.0-RC "
87+ const val KOTLIN_SDK_PIN = " 2.3.0"
8888
8989 /* * Constant: pinned version of Kotlin Coroutines. */
9090 const val COROUTINES = " 1.10.2"
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ ARG IBAZEL_VERSION=v0.15.10
66ARG NODE_VERSION="23"
77ARG YARN_VERSION="berry"
88ARG GRADLE_VERSION=8.12
9- ARG KOTLIN_VERSION=2.3.0-RC
9+ ARG KOTLIN_VERSION=2.3.0
1010ARG LLVM_VERSION=18
1111ARG GRADLE_DIST=bin
1212ARG INSTALL_ZSH="true"
You can’t perform that action at this time.
0 commit comments