Skip to content

Commit 37ad7d2

Browse files
committed
Prepare for release 3.7.0.
1 parent fc8357c commit 37ad7d2

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Change Log
22
==========
33

4+
## Version 3.7.0
5+
6+
_2023-12-16_
7+
8+
* New: `Timeout.cancel()` prevents a timeout from firing.
9+
* Breaking: Drop the `watchosX86` Kotlin/Native target. From [the Kotlin blog][watchosX86],
10+
_‘This is an obsolete simulator for Intel Macs. Use the watchosX64 target instead.’_
11+
* New: Add the `watchosDeviceArm64` Kotlin/Native target.
12+
* New: `Timeout` APIs that accept `kotlin.time.Duration`.
13+
* Upgrade: [Kotlin 1.9.21][kotlin_1_9_21].
14+
15+
416
## Version 3.6.0
517

618
_2023-10-01_
@@ -880,7 +892,9 @@ _2014-04-08_
880892
[kotlin_1_8_0]: https://kotlinlang.org/docs/whatsnew18.html
881893
[kotlin_1_9_0]: https://kotlinlang.org/docs/whatsnew19.html
882894
[kotlin_1_9_10]: https://github.com/JetBrains/kotlin/releases/tag/v1.9.10
895+
[kotlin_1_9_21]: https://github.com/JetBrains/kotlin/releases/tag/v1.9.21
883896
[loom]: https://wiki.openjdk.org/display/loom/Getting+started
884897
[maven_provided]: https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html
885898
[preview1]: https://github.com/WebAssembly/WASI/blob/main/legacy/preview1/docs.md
899+
[watchosX86]: https://blog.jetbrains.com/kotlin/2023/02/update-regarding-kotlin-native-targets/
886900
[xor_utf8]: https://github.com/square/okio/blob/bbb29c459e5ccf0f286e0b17ccdcacd7ac4bc2a9/okio/src/main/kotlin/okio/Utf8.kt#L302

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Releases
9898
Our [change log][changelog] has release history.
9999

100100
```kotlin
101-
implementation("com.squareup.okio:okio:3.6.0")
101+
implementation("com.squareup.okio:okio:3.7.0")
102102
```
103103

104104
<details>
@@ -110,7 +110,7 @@ repositories {
110110
}
111111

112112
dependencies {
113-
implementation("com.squareup.okio:okio:3.6.0")
113+
implementation("com.squareup.okio:okio:3.7.0")
114114
}
115115
```
116116

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ android.defaults.buildfeatures.shaders=false
1111
kotlin.mpp.stability.nowarn=true
1212

1313
GROUP=com.squareup.okio
14-
VERSION_NAME=3.7.0-SNAPSHOT
14+
VERSION_NAME=3.7.0
1515
kotlin.mpp.commonizerLogLevel=info

0 commit comments

Comments
 (0)