Skip to content

Commit 8cf16cd

Browse files
committed
Update kotlin 2.1.21 -> 2.2.21 (accidentally missed semver minor change) (credit: mipastgt)
1 parent 9dddf17 commit 8cf16cd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Tester.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# NOTE: We may need to update the kotlin version in the future
1010
RUNTIME_CLASSPATH_BASE = os.pathsep.join([
1111
"library/build/distributions/library-0.1.0/lib/library-0.1.0.jar",
12-
"library/build/distributions/library-0.1.0/lib/kotlin-stdlib-2.1.21.jar",
12+
"library/build/distributions/library-0.1.0/lib/kotlin-stdlib-2.2.21.jar",
1313
])
1414

1515
def read_from_file(path: str) -> str:

config.toml.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
rustflags = [
33
"-Z", "codegen-backend=../../../target/release/librustc_codegen_jvm.dylib",
44
"-C", "linker=../../../java-linker/target/release/java-linker",
5-
"-C", "link-args=../../../library/build/distributions/library-0.1.0/lib/library-0.1.0.jar ../../../library/build/distributions/library-0.1.0/lib/kotlin-stdlib-2.1.21.jar ../../../library/build/distributions/library-0.1.0/lib/annotations-13.0.jar --r8-jar ../../../vendor/r8.jar --proguard-config ../../../proguard/default.pro"
5+
"-C", "link-args=../../../library/build/distributions/library-0.1.0/lib/library-0.1.0.jar ../../../library/build/distributions/library-0.1.0/lib/kotlin-stdlib-2.2.21.jar ../../../library/build/distributions/library-0.1.0/lib/annotations-13.0.jar --r8-jar ../../../vendor/r8.jar --proguard-config ../../../proguard/default.pro"
66
]
77

88
# Throwing a JVM exception will unwind and give a stack trace, no need for rust to handle unwinding.

library/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
kotlin("jvm") version "2.1.21"
2+
kotlin("jvm") version "2.2.21"
33
application
44
}
55

0 commit comments

Comments
 (0)