Skip to content

Commit

Permalink
Prepare for release 3.6.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
swankjesse committed Oct 2, 2023
1 parent ce4df5e commit 0b9ace5
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 6 deletions.
28 changes: 25 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
Change Log
==========

## Version 3.6.0

_2023-10-01_

* Fix: Don't leak file handles when using `metadata` functions on `ZipFileSystem`. We had a bug
where we were closing the `.zip` file, but not a stream inside of it. We would have prevented
this bug if only we’d used `FakeFileSystem.checkNoOpenFiles()` in our tests!
* Fix: Don't build an index of a class loader's resources in `ResourceFileSystem.read()`. This
operation doesn't need this index, and building it is potentially expensive.
* New: Experimentally support Linux on ARM64 for Kotlin/Native targets (`linuxArm64`). Note that
we haven't yet added CI test coverage for this platform.
* Upgrade: [Kotlin 1.9.10][kotlin_1_9_10].


## Version 1.17.6

_2023-10-01_

* Fix: Don't crash decoding GZIP files when the optional extra data (`XLEN`) is 32 KiB or larger.


## Version 3.5.0

_2023-08-02_
Expand Down Expand Up @@ -353,20 +374,20 @@ _2019-12-11_
in a crash when subsequent reads encountered an unexpected empty segment.
### Version 2.4.1
## Version 2.4.1
_2019-10-04_
* Fix: Don't cache hash code and UTF-8 string in `ByteString` on Kotlin/Native which prevented freezing.

### Version 2.4.0
## Version 2.4.0

_2019-08-26_

* New: Upgrade to Kotlin 1.3.50.


### Version 2.3.0
## Version 2.3.0

_2019-07-29_

Expand Down Expand Up @@ -858,6 +879,7 @@ _2014-04-08_
[kotlin_1_6_20]: https://blog.jetbrains.com/kotlin/2022/04/kotlin-1-6-20-released/
[kotlin_1_8_0]: https://kotlinlang.org/docs/whatsnew18.html
[kotlin_1_9_0]: https://kotlinlang.org/docs/whatsnew19.html
[kotlin_1_9_10]: https://github.com/JetBrains/kotlin/releases/tag/v1.9.10
[loom]: https://wiki.openjdk.org/display/loom/Getting+started
[maven_provided]: https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html
[preview1]: https://github.com/WebAssembly/WASI/blob/main/legacy/preview1/docs.md
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.5.0")
implementation("com.squareup.okio:okio:3.6.0")
```

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

dependencies {
implementation("com.squareup.okio:okio:3.5.0")
implementation("com.squareup.okio:okio:3.6.0")
}
```

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

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

0 comments on commit 0b9ace5

Please sign in to comment.