From 0de6068aad12fd53715ba0f3a05a854820f8e822 Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Thu, 12 Sep 2024 13:18:17 -0400 Subject: [PATCH] Prepare version 3.9.1 --- CHANGELOG.md | 10 ++++++++++ docs/index.md | 6 +++--- gradle.properties | 2 +- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17c3294a9b..cadab97042 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ Change Log ========== +## Version 3.9.1 + +_2024-09-12_ + + * Fix: Support paths containing a single dot (".") in `Path.relativeTo`. + * Fix: Do not read from the upstream source when a 0-byte read is requested. + * Fix: Update kotlinx.datetime to 0.6.0 to correct a Gradle module metadata problem with 0.5.0. + Note: this artifact is only used in 'okio-fakefilesystem' and 'okio-nodefilesystem' and not in the Okio core. + + ## Version 3.9.0 _2024-03-12_ diff --git a/docs/index.md b/docs/index.md index 204cf2b1fd..d4d9e2ee84 100644 --- a/docs/index.md +++ b/docs/index.md @@ -77,7 +77,7 @@ works and how Okio does it. [Ok Multiplatform!][ok_multiplatform_talk] ([slides][ok_multiplatform_slides]): How we changed Okio’s implementation language from Java to Kotlin. -[Nerding Out On Okio][apis_talk]: The story of the Okio APIs, their design and tradeoffs, as well +[Nerding Out On Okio][apis_talk]: The story of the Okio APIs, their design and tradeoffs, as well as implementation notes with animated marbles diagrams. @@ -98,7 +98,7 @@ Releases Our [change log][changelog] has release history. ```kotlin -implementation("com.squareup.okio:okio:3.9.0") +implementation("com.squareup.okio:okio:3.9.1") ```
@@ -110,7 +110,7 @@ repositories { } dependencies { - implementation("com.squareup.okio:okio:3.9.0") + implementation("com.squareup.okio:okio:3.9.1") } ``` diff --git a/gradle.properties b/gradle.properties index a795d747c2..898d63a14e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,5 +11,5 @@ android.defaults.buildfeatures.shaders=false kotlin.mpp.stability.nowarn=true GROUP=com.squareup.okio -VERSION_NAME=3.10.0-SNAPSHOT +VERSION_NAME=3.9.1 kotlin.mpp.commonizerLogLevel=info