Skip to content

Commit

Permalink
Prepare for release 3.9.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
swankjesse committed Mar 13, 2024
1 parent eac869b commit d6c38c2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
Change Log
==========

## Version 3.9.0

_2024-03-12_

* New: `FileSystem.SYSTEM` can be used in source sets that target both Kotlin/Native and
Kotlin/JVM. Previously, we had this symbol in each source set but it wasn't available to
common source sets.
* New: `COpaquePointer.readByteString(...)` creates a ByteString from a memory address.
* New: Support `InflaterSource`, `DeflaterSink`, `GzipSink`, and `GzipSource` in Kotlin/Native.
* New: Support openZip() on Kotlin/Native. One known bug in this implementation is that
`FileMetadata.lastModifiedAtMillis()` is interpreted as UTC and not the host machine's time zone.
* New: Prefer NTFS timestamps in ZIP file systems' metadata. This avoids the time zone problems
of ZIP's built-in DOS timestamps, and the 2038 time bombs of ZIP's extended timestamps.
* Fix: Don't leak file handles to opened JAR files open in `FileSystem.RESOURCES`.
* Fix: Don't throw a `NullPointerException` if `Closeable.use { ... }` returns null.


## Version 3.8.0

_2024-02-09_
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Releases
Our [change log][changelog] has release history.

```kotlin
implementation("com.squareup.okio:okio:3.8.0")
implementation("com.squareup.okio:okio:3.9.0")
```

<details>
Expand All @@ -110,7 +110,7 @@ repositories {
}

dependencies {
implementation("com.squareup.okio:okio:3.8.0")
implementation("com.squareup.okio:okio:3.9.0")
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ android.defaults.buildfeatures.shaders=false
kotlin.mpp.stability.nowarn=true

GROUP=com.squareup.okio
VERSION_NAME=3.9.0-SNAPSHOT
VERSION_NAME=3.9.0
kotlin.mpp.commonizerLogLevel=info

0 comments on commit d6c38c2

Please sign in to comment.