Skip to content

Commit a502c9f

Browse files
Upgrading Kotlin to 2.0.0 (#282)
1 parent bc9ec34 commit a502c9f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
target
44
build
55
.gradle
6+
.kotlin
67
*~
78
*.versionsBackup
89
**/karma/node_modules

build.gradle.kts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalWasmDsl
66
* -PversionTag - works together with "branch-build" profile and overrides "-SNAPSHOT" suffix of the version.
77
*/
88
plugins {
9-
kotlin("multiplatform") version "1.9.22"
9+
kotlin("multiplatform") version "2.0.0"
1010
id("maven-publish")
1111
id("signing")
1212
id("org.jetbrains.kotlinx.binary-compatibility-validator") version "0.13.2"
@@ -131,8 +131,7 @@ kotlin {
131131
common {
132132
group("jsCommon") {
133133
withJs()
134-
// TODO: switch to `withWasmJs()` after upgrade to Kotlin 2.0
135-
withWasm()
134+
withWasmJs()
136135
}
137136
}
138137
}

0 commit comments

Comments
 (0)