From 37ad7d2439ae86f7f4232e75991eb08bf86636aa Mon Sep 17 00:00:00 2001 From: Jesse Wilson Date: Sat, 16 Dec 2023 15:22:51 -0500 Subject: [PATCH] Prepare for release 3.7.0. --- CHANGELOG.md | 14 ++++++++++++++ docs/index.md | 4 ++-- gradle.properties | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 218cad3e8f..ad2eaaa39e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ Change Log ========== +## Version 3.7.0 + +_2023-12-16_ + + * New: `Timeout.cancel()` prevents a timeout from firing. + * Breaking: Drop the `watchosX86` Kotlin/Native target. From [the Kotlin blog][watchosX86], + _‘This is an obsolete simulator for Intel Macs. Use the watchosX64 target instead.’_ + * New: Add the `watchosDeviceArm64` Kotlin/Native target. + * New: `Timeout` APIs that accept `kotlin.time.Duration`. + * Upgrade: [Kotlin 1.9.21][kotlin_1_9_21]. + + ## Version 3.6.0 _2023-10-01_ @@ -880,7 +892,9 @@ _2014-04-08_ [kotlin_1_8_0]: https://kotlinlang.org/docs/whatsnew18.html [kotlin_1_9_0]: https://kotlinlang.org/docs/whatsnew19.html [kotlin_1_9_10]: https://github.com/JetBrains/kotlin/releases/tag/v1.9.10 +[kotlin_1_9_21]: https://github.com/JetBrains/kotlin/releases/tag/v1.9.21 [loom]: https://wiki.openjdk.org/display/loom/Getting+started [maven_provided]: https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html [preview1]: https://github.com/WebAssembly/WASI/blob/main/legacy/preview1/docs.md +[watchosX86]: https://blog.jetbrains.com/kotlin/2023/02/update-regarding-kotlin-native-targets/ [xor_utf8]: https://github.com/square/okio/blob/bbb29c459e5ccf0f286e0b17ccdcacd7ac4bc2a9/okio/src/main/kotlin/okio/Utf8.kt#L302 diff --git a/docs/index.md b/docs/index.md index b8f8780738..4fb96f5ea4 100644 --- a/docs/index.md +++ b/docs/index.md @@ -98,7 +98,7 @@ Releases Our [change log][changelog] has release history. ```kotlin -implementation("com.squareup.okio:okio:3.6.0") +implementation("com.squareup.okio:okio:3.7.0") ```
@@ -110,7 +110,7 @@ repositories { } dependencies { - implementation("com.squareup.okio:okio:3.6.0") + implementation("com.squareup.okio:okio:3.7.0") } ``` diff --git a/gradle.properties b/gradle.properties index 4e37e96faa..ed1f6d9a34 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,5 +11,5 @@ android.defaults.buildfeatures.shaders=false kotlin.mpp.stability.nowarn=true GROUP=com.squareup.okio -VERSION_NAME=3.7.0-SNAPSHOT +VERSION_NAME=3.7.0 kotlin.mpp.commonizerLogLevel=info