diff --git a/buildLogic/multiplatform-convention/src/main/kotlin/app/cash/sqldelight/multiplatform/MultiplatformConventions.kt b/buildLogic/multiplatform-convention/src/main/kotlin/app/cash/sqldelight/multiplatform/MultiplatformConventions.kt index 3df0428c0a72..8f80e3b652f3 100644 --- a/buildLogic/multiplatform-convention/src/main/kotlin/app/cash/sqldelight/multiplatform/MultiplatformConventions.kt +++ b/buildLogic/multiplatform-convention/src/main/kotlin/app/cash/sqldelight/multiplatform/MultiplatformConventions.kt @@ -45,7 +45,7 @@ class MultiplatformConventions : Plugin { common { group("jsCommon") { withJs() - withWasmJs() + withWasm() } } } diff --git a/drivers/web-worker-driver/build.gradle b/drivers/web-worker-driver/build.gradle index 5d4c21e63447..c313bbb8dcc7 100644 --- a/drivers/web-worker-driver/build.gradle +++ b/drivers/web-worker-driver/build.gradle @@ -27,7 +27,7 @@ kotlin { it.common { it.group("jsCommon") { it.withJs() - it.withWasmJs() + it.withWasm() } } } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 0d1b194a3cc3..a5b298e1c572 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -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) @@ -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" } diff --git a/runtime/build.gradle b/runtime/build.gradle index e6a243bf47d0..1d15ac8ff12c 100644 --- a/runtime/build.gradle +++ b/runtime/build.gradle @@ -20,7 +20,7 @@ kotlin { it.common { it.group("jsNativeCommon") { it.withJs() - it.withWasmJs() + it.withWasm() it.withNative() } }