Skip to content

Commit

Permalink
Prepare for release 3.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
swankjesse committed Jul 7, 2023
1 parent c5f462b commit a161b07
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
Change Log
==========

## Version 3.4.0

_2023-07-07_

* New: Adapt a Java NIO FileSystem (`java.nio.file.FileSystem`) as an Okio FileSystem using
`fileSystem.asOkioFileSystem()`.
* New: Adapt Android’s `AssetManager` as an Okio FileSystem using `AssetFileSystem`. This is in the
new `okio-assetfilesystem` module. Android applications should prefer this over
`FileSystem.RESOURCES` as it’s faster to load.
* Fix: Don't crash decoding GZIP files when the optional extra data (`XLEN`) is 32 KiB or larger.
* Fix: Resolve symlinks in `FakeFileSystem.canonicalize()`.
* Fix: Report the correct `createdAtMillis` in `NodeJsFileSystem` file metadata. We were
incorrectly using `ctimeMs`, where `c` means _changed_, not _created_.
* Fix: `UnsafeCursor` is now `Closeable`.


## Version 3.3.0

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

```kotlin
implementation("com.squareup.okio:okio:3.3.0")
implementation("com.squareup.okio:okio:3.4.0")
```

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

dependencies {
implementation("com.squareup.okio:okio:3.3.0")
implementation("com.squareup.okio:okio:3.4.0")
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ kotlin.mpp.stability.nowarn=true
kotlin.mpp.enableCompatibilityMetadataVariant=true

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

0 comments on commit a161b07

Please sign in to comment.