Skip to content

Commit 3a3950e

Browse files
cmotailya-g
andauthored
Update Kotlin to 1.8.21, kotlinx.serialization to 1.5.1, and add watchosDeviceArm64 target (#278)
- Updated Kotlin version to 1.8.21 - Updated kotlinx.serialization to 1.5.1 - Enabled watchosDeviceArm64 target (which is currently supported by kotlinx.serialization) - Update yarn.lock after updating Kotlin version --------- Co-authored-by: Carlos Mota <[email protected]> Co-authored-by: Ilya Gorbunov <[email protected]>
1 parent a196aac commit 3a3950e

File tree

5 files changed

+427
-39
lines changed

5 files changed

+427
-39
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![JetBrains official project](https://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
55
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)
66
[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-datetime.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22org.jetbrains.kotlinx%22%20AND%20a:%22kotlinx-datetime%22)
7-
[![Kotlin](https://img.shields.io/badge/kotlin-1.7.0-blue.svg?logo=kotlin)](http://kotlinlang.org)
7+
[![Kotlin](https://img.shields.io/badge/kotlin-1.8.21-blue.svg?logo=kotlin)](http://kotlinlang.org)
88
[![KDoc link](https://img.shields.io/badge/API_reference-KDoc-blue)](https://kotlinlang.org/api/kotlinx-datetime/)
99
[![Slack channel](https://img.shields.io/badge/chat-slack-blue.svg?logo=slack)](https://kotlinlang.slack.com/messages/kotlinx-datetime/)
1010
[![TeamCity build](https://img.shields.io/teamcity/build/s/KotlinTools_KotlinxDatetime_Build_All.svg?server=http%3A%2F%2Fteamcity.jetbrains.com)](https://teamcity.jetbrains.com/viewType.html?buildTypeId=KotlinTools_KotlinxDatetime_Build_All&guest=1)

core/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ kotlin {
7171
target("tvosArm64")
7272
target("iosArm64")
7373
// Tier 3
74-
// target("watchosDeviceArm64") // not supported by kotlinx.serialization
74+
target("watchosDeviceArm64")
7575
// Deprecated for removal
7676
target("iosArm32")
7777
target("watchosX86")

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ group=org.jetbrains.kotlinx
55
version=0.4.0
66
versionSuffix=SNAPSHOT
77

8-
defaultKotlinVersion=1.8.10
8+
defaultKotlinVersion=1.8.21
99
dokkaVersion=1.8.20
10-
serializationVersion=1.5.0
10+
serializationVersion=1.5.1
1111

1212
java.mainToolchainVersion=8
1313
java.modularToolchainVersion=11

0 commit comments

Comments
 (0)