Skip to content

Commit 6ff3275

Browse files
committed
Prepare version 3.10.0
1 parent 939c30b commit 6ff3275

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

Diff for: CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Change Log
22
==========
33

4+
## Version 3.9.1
5+
6+
_2025-01-06_
7+
8+
* 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.
9+
* `InputStream`s created from `BufferedSource.inputStream()` now have a more efficient version of `InputStream.transferTo()` which reduces memory copies.
10+
* `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.
11+
12+
413
## Version 3.9.1
514

615
_2024-09-12_

Diff for: docs/index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -98,19 +98,19 @@ Releases
9898
Our [change log][changelog] has release history.
9999

100100
```kotlin
101-
implementation("com.squareup.okio:okio:3.9.1")
101+
implementation("com.squareup.okio:okio:3.10.0")
102102
```
103103

104104
<details>
105105
<summary>Snapshot builds are also available</summary>
106106

107107
```kotlin
108108
repositories {
109-
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
109+
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
110110
}
111111

112112
dependencies {
113-
implementation("com.squareup.okio:okio:3.9.1")
113+
implementation("com.squareup.okio:okio:3.11.0-SNAPSHOT")
114114
}
115115
```
116116

Diff for: gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ kotlin.mpp.commonizerLogLevel=info
1212
kotlin.mpp.stability.nowarn=true
1313

1414
GROUP=com.squareup.okio
15-
VERSION_NAME=3.10.0-SNAPSHOT
15+
VERSION_NAME=3.10.0

0 commit comments

Comments
 (0)