Skip to content

Commit c7f7a23

Browse files
committed
Prepare version 3.10.1
1 parent 426cf99 commit c7f7a23

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

.github/workflows/release.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010

1111
jobs:
1212
publish:
13-
runs-on: ubuntu-latest
13+
runs-on: macos-14
1414

1515
steps:
1616
- uses: actions/checkout@v4
@@ -19,9 +19,8 @@ jobs:
1919
distribution: 'zulu'
2020
java-version: 19
2121

22-
- name: Build and publish artifacts
22+
- run: ./gradlew publish
2323
env:
2424
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
2525
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
2626
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.ARTIFACT_SIGNING_PRIVATE_KEY }}
27-
run: ./gradlew publish

CHANGELOG.md

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

4-
## Version 3.10.0
4+
## Version 3.10.1
55

6-
_2025-01-06_
6+
_2025-01-07_
77

88
* 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.
99
* `InputStream`s created from `BufferedSource.inputStream()` now have a more efficient version of `InputStream.transferTo()` which reduces memory copies.
1010
* `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.
1111

1212

13+
## Version 3.10.0
14+
15+
_2025-01-06_
16+
17+
This version is equivalent to the subsequent 3.10.1, but it did not fully publish to Maven Central due to infrastructure problems.
18+
19+
1320
## Version 3.9.1
1421

1522
_2024-09-12_

docs/index.md

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

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

104104
<details>

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.11.0-SNAPSHOT
15+
VERSION_NAME=3.10.1

0 commit comments

Comments
 (0)