Skip to content

Commit 887aa12

Browse files
squarejesseilya-g
authored andcommitted
Upgrade Kotlin to 1.5.30 and add support for macosArm64
Also iosSimulatorArm64, watchosSimulatorArm64, and tvosSimulatorArm64. Closes: #141
1 parent 4177ff2 commit 887aa12

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

core/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,19 @@ kotlin {
3030

3131
common("darwin") {
3232
target("macosX64")
33+
target("macosArm64")
3334
target("iosX64")
3435
target("iosArm64")
3536
target("iosArm32")
37+
target("iosSimulatorArm64")
3638
target("watchosArm32")
3739
target("watchosArm64")
3840
target("watchosX86")
3941
target("watchosX64")
42+
target("watchosSimulatorArm64")
4043
target("tvosArm64")
4144
target("tvosX64")
45+
target("tvosSimulatorArm64")
4246
}
4347
}
4448

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ group=org.jetbrains.kotlinx
44
version=0.2.1
55
versionSuffix=SNAPSHOT
66

7-
kotlinVersion=1.5.0
8-
serializationVersion=1.2.1
7+
kotlinVersion=1.5.30
8+
serializationVersion=1.3.0
99

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

serialization/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,19 @@ kotlin {
1313
target("linuxX64")
1414
target("mingwX64")
1515
target("macosX64")
16+
target("macosArm64")
1617
target("iosX64")
1718
target("iosArm64")
1819
target("iosArm32")
20+
target("iosSimulatorArm64")
1921
target("watchosArm32")
2022
target("watchosArm64")
2123
target("watchosX86")
2224
target("watchosX64")
25+
target("watchosSimulatorArm64")
2326
target("tvosArm64")
2427
target("tvosX64")
28+
target("tvosSimulatorArm64")
2529
}
2630

2731
jvm {

0 commit comments

Comments
 (0)