Skip to content

Commit

Permalink
Prepare version 3.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Jan 6, 2025
1 parent 939c30b commit 6ff3275
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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_
Expand Down
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,19 +98,19 @@ 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")
```

<details>
<summary>Snapshot builds are also available</summary>

```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")
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 6ff3275

Please sign in to comment.