Skip to content

Commit b4128f4

Browse files
committed
Upgrade the Kotlin version
* This fixes the incompatibility with the newer serialization versions. * Upgraded the version of kotlinx.serialization. * watchosX64 target is added. Fixes #118
1 parent 0ccca44 commit b4128f4

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ buildscript {
33
mavenCentral()
44
}
55
dependencies {
6-
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.30")
6+
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.0")
77
}
88
}
99

1010
plugins {
1111
id("kotlinx.team.infra") version "0.3.0-dev-64"
12-
kotlin("plugin.serialization") version "1.4.30"
12+
kotlin("plugin.serialization") version "1.5.0"
1313
}
1414

1515
infra {

core/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ kotlin {
3636
target("watchosArm32")
3737
target("watchosArm64")
3838
target("watchosX86")
39+
target("watchosX64")
3940
target("tvosArm64")
4041
target("tvosX64")
4142
}

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ group=org.jetbrains.kotlinx
44
version=0.2.0
55
versionSuffix=SNAPSHOT
66

7-
serializationVersion=1.1.0
7+
serializationVersion=1.2.1
88

99
kotlin.mpp.enableGranularSourceSetsMetadata=true
1010
kotlin.mpp.enableCompatibilityMetadataVariant=true

serialization/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ kotlin {
1919
target("watchosArm32")
2020
target("watchosArm64")
2121
target("watchosX86")
22+
target("watchosX64")
2223
target("tvosArm64")
2324
target("tvosX64")
2425
}

0 commit comments

Comments
 (0)