Skip to content

Commit

Permalink
Try to use Kotlin 1.9.23 instead of 2.0.0-Beta5
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaGulya committed Mar 25, 2024
1 parent 54ed82f commit 5ba62bc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class MultiplatformConventions : Plugin<Project> {
common {
group("jsCommon") {
withJs()
withWasmJs()
withWasm()
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion drivers/web-worker-driver/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ kotlin {
it.common {
it.group("jsCommon") {
it.withJs()
it.withWasmJs()
it.withWasm()
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
kotlin = "2.0.0-Beta5"
kotlin = "1.9.23"
dokka = "1.9.20"
kotlinCoroutines = "1.8.0"
idea = "222.4459.24" # Flamingo | 2022.2.1 (see https://plugins.jetbrains.com/docs/intellij/android-studio-releases-list.html)
Expand Down Expand Up @@ -108,5 +108,5 @@ publish = { id = "com.vanniktech.maven.publish", version = "0.20.0" }
spotless = { id = "com.diffplug.spotless", version = "6.25.0" }
changelog = { id = "org.jetbrains.changelog", version = "2.0.0" }
shadow = { id = "com.github.johnrengelman.shadow", version = "8.1.1" }
ksp = { id = "com.google.devtools.ksp", version = "2.0.0-Beta5-1.0.19" }
ksp = { id = "com.google.devtools.ksp", version = "1.9.23-1.0.19" }
binaryCompatibilityValidator = { id = "org.jetbrains.kotlinx.binary-compatibility-validator", version = "0.14.0" }
2 changes: 1 addition & 1 deletion runtime/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ kotlin {
it.common {
it.group("jsNativeCommon") {
it.withJs()
it.withWasmJs()
it.withWasm()
it.withNative()
}
}
Expand Down

0 comments on commit 5ba62bc

Please sign in to comment.