Skip to content

Commit

Permalink
Upgrading Kotlin to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
severn-everett committed May 24, 2024
1 parent bc9ec34 commit a5ec00c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
target
build
.gradle
.kotlin
*~
*.versionsBackup
**/karma/node_modules
Expand Down
5 changes: 2 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalWasmDsl
* -PversionTag - works together with "branch-build" profile and overrides "-SNAPSHOT" suffix of the version.
*/
plugins {
kotlin("multiplatform") version "1.9.22"
kotlin("multiplatform") version "2.0.0"
id("maven-publish")
id("signing")
id("org.jetbrains.kotlinx.binary-compatibility-validator") version "0.13.2"
Expand Down Expand Up @@ -131,8 +131,7 @@ kotlin {
common {
group("jsCommon") {
withJs()
// TODO: switch to `withWasmJs()` after upgrade to Kotlin 2.0
withWasm()
withWasmJs()
}
}
}
Expand Down

0 comments on commit a5ec00c

Please sign in to comment.