Skip to content

Commit a161b07

Browse files
committed
Prepare for release 3.4.0.
1 parent c5f462b commit a161b07

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

Diff for: CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
Change Log
22
==========
33

4+
## Version 3.4.0
5+
6+
_2023-07-07_
7+
8+
* New: Adapt a Java NIO FileSystem (`java.nio.file.FileSystem`) as an Okio FileSystem using
9+
`fileSystem.asOkioFileSystem()`.
10+
* New: Adapt Android’s `AssetManager` as an Okio FileSystem using `AssetFileSystem`. This is in the
11+
new `okio-assetfilesystem` module. Android applications should prefer this over
12+
`FileSystem.RESOURCES` as it’s faster to load.
13+
* Fix: Don't crash decoding GZIP files when the optional extra data (`XLEN`) is 32 KiB or larger.
14+
* Fix: Resolve symlinks in `FakeFileSystem.canonicalize()`.
15+
* Fix: Report the correct `createdAtMillis` in `NodeJsFileSystem` file metadata. We were
16+
incorrectly using `ctimeMs`, where `c` means _changed_, not _created_.
17+
* Fix: `UnsafeCursor` is now `Closeable`.
18+
19+
420
## Version 3.3.0
521

622
_2023-01-07_

Diff for: docs/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Releases
9595
Our [change log][changelog] has release history.
9696

9797
```kotlin
98-
implementation("com.squareup.okio:okio:3.3.0")
98+
implementation("com.squareup.okio:okio:3.4.0")
9999
```
100100

101101
<details>
@@ -107,7 +107,7 @@ repositories {
107107
}
108108

109109
dependencies {
110-
implementation("com.squareup.okio:okio:3.3.0")
110+
implementation("com.squareup.okio:okio:3.4.0")
111111
}
112112
```
113113

Diff for: gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ kotlin.mpp.stability.nowarn=true
1616
kotlin.mpp.enableCompatibilityMetadataVariant=true
1717

1818
GROUP=com.squareup.okio
19-
VERSION_NAME=3.4.0-SNAPSHOT
19+
VERSION_NAME=3.4.0
2020
kotlin.mpp.commonizerLogLevel=info

0 commit comments

Comments
 (0)