diff --git a/CHANGELOG.md b/CHANGELOG.md index cadab97042..2aa547a711 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ Change Log ========== +## Version 3.9.1 + +_2025-01-06_ + + * New: `FileSystem.close()` may prevent future access and/or clean up associated resources depending on the backing implementation. `FakeFileSystem` will prevent future operations once closed. + * `InputStream`s created from `BufferedSource.inputStream()` now have a more efficient version of `InputStream.transferTo()` which reduces memory copies. + * `okio-nodefilesystem` is no longer publised as a JS project, but a Kotlin multiplatform project with only a JS target. This change should not affect consumers in any way, and is motivated by the Kotlin Gradle plugin deprecating the JS-only plugin. + + ## Version 3.9.1 _2024-09-12_ diff --git a/docs/index.md b/docs/index.md index d4d9e2ee84..5a21168e57 100644 --- a/docs/index.md +++ b/docs/index.md @@ -98,7 +98,7 @@ Releases Our [change log][changelog] has release history. ```kotlin -implementation("com.squareup.okio:okio:3.9.1") +implementation("com.squareup.okio:okio:3.10.0") ```
@@ -106,11 +106,11 @@ implementation("com.squareup.okio:okio:3.9.1") ```kotlin repositories { - maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") + maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") } dependencies { - implementation("com.squareup.okio:okio:3.9.1") + implementation("com.squareup.okio:okio:3.11.0-SNAPSHOT") } ``` diff --git a/gradle.properties b/gradle.properties index c6f78de6db..95dc0eec2d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -12,4 +12,4 @@ kotlin.mpp.commonizerLogLevel=info kotlin.mpp.stability.nowarn=true GROUP=com.squareup.okio -VERSION_NAME=3.10.0-SNAPSHOT +VERSION_NAME=3.10.0