Skip to content

Commit 53ab798

Browse files
committed
Bump Kotlin Version to 2.1.10
1 parent adae263 commit 53ab798

File tree

8 files changed

+10
-20
lines changed

8 files changed

+10
-20
lines changed

bench/include/kotlin-jvm/build.gradle.kts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,6 @@ repositories {
2121
gradlePluginPortal()
2222
}
2323

24-
application {
25-
// Define the main class for the application.
26-
mainClassName = "MainKt"
27-
}
28-
2924
dependencies {
3025
// implementation(kotlin("stdlib"))
3126
// implementation("org.slf4j:slf4j-api:1.7.36")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
11
rootProject.name = "app"
2-
// https://docs.gradle.org/7.0/release-notes.html
3-
enableFeaturePreview("VERSION_CATALOGS")

bench/include/kotlin-native/build.gradle.kts

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import org.jetbrains.kotlin.config.KotlinCompilerVersion
33
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
44

55
plugins {
6-
val kotlinVersion = "1.8.21"
6+
val kotlinVersion = "2.1.10"
77
kotlin("multiplatform").version(kotlinVersion)
88
kotlin("plugin.serialization").version(kotlinVersion)
9-
id("com.github.ben-manes.versions").version("0.46.0")
9+
id("com.github.ben-manes.versions").version("0.52.0")
1010
}
1111

1212
repositories {
@@ -24,8 +24,8 @@ kotlin {
2424
implementation(libs.bignum)
2525
implementation(libs.kbignum)
2626
// implementation("com.ionspin.kotlin:bignum:0.3.1")
27-
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
28-
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.0")
27+
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1")
28+
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0")
2929
}
3030
}
3131
}
@@ -41,8 +41,7 @@ kotlin {
4141
//
4242
kotlin.targets.withType(KotlinNativeTarget::class.java) {
4343
binaries.all {
44-
binaryOptions["memoryModel"] = "experimental"
45-
// freeCompilerArgs += "-Xruntime-logs=gc=info"
44+
freeCompilerArgs += "opt"
4645
}
4746
}
4847

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
https.protocols=TLSv1.2,TLSv1.3
22
kotlin.mpp.stability.nowarn=true
3-
kotlin.native.binary.memoryModel=experimental
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[versions]
22

33
[libraries]
4-
bignum = {module = "com.ionspin.kotlin:bignum", version = "0.3.8"}
5-
kbignum = {module = "com.soywiz.korlibs.kbignum:kbignum", version = "3.4.0"}
4+
bignum = {module = "com.ionspin.kotlin:bignum", version = "0.3.10"}
5+
kbignum = {module = "com.soywiz.korlibs.kbignum:kbignum", version = "4.0.10"}
66

77
[bundles]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
// https://docs.gradle.org/7.0/release-notes.html
2-
enableFeaturePreview("VERSION_CATALOGS")
1+

0 commit comments

Comments
 (0)