Skip to content

Commit 7e21025

Browse files
committed
chore: update kotlin → 2.3.0
Signed-off-by: Sam Gammon <[email protected]>
1 parent 956abb6 commit 7e21025

File tree

9 files changed

+11
-14
lines changed

9 files changed

+11
-14
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ versions.java.language = 21
7979
versions.java.toolchain = 25
8080
versions.java.minimum = 21
8181
versions.java.target = 21
82-
versions.kotlin.sdk = 2.3.0-RC
82+
versions.kotlin.sdk = 2.3.0
8383
versions.kotlin.language = 2.1
8484
versions.android.sdk.target = 33
8585

gradle/elide.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ kotest-plugin = "0.8.18"
137137
kotlin-compile-testing = "1.6.0"
138138
kotlin-dataframe = "0.11.0"
139139
kotlin-language = "2.1"
140-
kotlin-sdk = "2.3.0-RC"
140+
kotlin-sdk = "2.3.0"
141141
kotlinpoet = "2.2.0"
142142
kotlinx-abiValidator = "0.18.1"
143143
kotlinx-benchmark = "0.4.13"

packages/cli/src/main/kotlin/elide/tool/cli/cmd/tool/javac/JavaCompilerAdapter.kt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff 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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
kotlin("jvm") version "2.3.0-RC"
2+
kotlin("jvm") version "2.3.0"
33
}
44

55
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile>().configureEach {
@@ -8,6 +8,6 @@ tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile>().configureEa
88

99
dependencies {
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
kotlin("jvm") version "2.3.0-RC"
2+
kotlin("jvm") version "2.3.0"
33
}
44

55
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile>().configureEach {
@@ -8,6 +8,6 @@ tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile>().configureEa
88

99
dependencies {
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

packages/graalvm-kt/src/main/kotlin/elide/runtime/gvm/kotlin/KotlinLanguage.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import elide.runtime.gvm.kotlin.feature.KotlinResource
2727
private const val KOTLIN_ID = "kotlin"
2828
private const val KOTLIN_NAME = "Kotlin"
2929
private 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"
3131
private const val KOTLIN_MIME_TYPE = "application/x-kotlin"
3232

3333
/**

packages/tooling/src/main/kotlin/elide/tooling/jvm/JvmLibraries.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import elide.tooling.project.ElideConfiguredProject
2424
public 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"

tools/elide-build/src/main/kotlin/elide/internal/conventions/Constants.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

tools/images/codespace/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ARG IBAZEL_VERSION=v0.15.10
66
ARG NODE_VERSION="23"
77
ARG YARN_VERSION="berry"
88
ARG GRADLE_VERSION=8.12
9-
ARG KOTLIN_VERSION=2.3.0-RC
9+
ARG KOTLIN_VERSION=2.3.0
1010
ARG LLVM_VERSION=18
1111
ARG GRADLE_DIST=bin
1212
ARG INSTALL_ZSH="true"

0 commit comments

Comments
 (0)