Skip to content

Commit d6c38c2

Browse files
committed
Prepare for release 3.9.0.
1 parent eac869b commit d6c38c2

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

CHANGELOG.md

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

4+
## Version 3.9.0
5+
6+
_2024-03-12_
7+
8+
* New: `FileSystem.SYSTEM` can be used in source sets that target both Kotlin/Native and
9+
Kotlin/JVM. Previously, we had this symbol in each source set but it wasn't available to
10+
common source sets.
11+
* New: `COpaquePointer.readByteString(...)` creates a ByteString from a memory address.
12+
* New: Support `InflaterSource`, `DeflaterSink`, `GzipSink`, and `GzipSource` in Kotlin/Native.
13+
* New: Support openZip() on Kotlin/Native. One known bug in this implementation is that
14+
`FileMetadata.lastModifiedAtMillis()` is interpreted as UTC and not the host machine's time zone.
15+
* New: Prefer NTFS timestamps in ZIP file systems' metadata. This avoids the time zone problems
16+
of ZIP's built-in DOS timestamps, and the 2038 time bombs of ZIP's extended timestamps.
17+
* Fix: Don't leak file handles to opened JAR files open in `FileSystem.RESOURCES`.
18+
* Fix: Don't throw a `NullPointerException` if `Closeable.use { ... }` returns null.
19+
20+
421
## Version 3.8.0
522

623
_2024-02-09_

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.8.0")
101+
implementation("com.squareup.okio:okio:3.9.0")
102102
```
103103

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

112112
dependencies {
113-
implementation("com.squareup.okio:okio:3.8.0")
113+
implementation("com.squareup.okio:okio:3.9.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.9.0-SNAPSHOT
14+
VERSION_NAME=3.9.0
1515
kotlin.mpp.commonizerLogLevel=info

0 commit comments

Comments
 (0)