diff --git a/CHANGELOG.md b/CHANGELOG.md index ad2eaaa39e..85fe2aaf4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Change Log ========== +## Version 3.8.0 + +_2024-02-09_ + + * New: `TypedOptions` works like `Options`, but it returns a `T` rather than an index. + * Fix: Don't leave sinks open when there's a race in `Pipe.fold()`. + + ## Version 3.7.0 _2023-12-16_ diff --git a/docs/index.md b/docs/index.md index 4fb96f5ea4..52fdeb00af 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.7.0") +implementation("com.squareup.okio:okio:3.8.0") ```
@@ -110,7 +110,7 @@ repositories { } dependencies { - implementation("com.squareup.okio:okio:3.7.0") + implementation("com.squareup.okio:okio:3.8.0") } ``` diff --git a/gradle.properties b/gradle.properties index 5c7c341642..f473f87868 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.8.0-SNAPSHOT +VERSION_NAME=3.8.0 kotlin.mpp.commonizerLogLevel=info