diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 522f07cc97..7c1560b619 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -10,7 +10,7 @@ env: jobs: publish: - runs-on: ubuntu-latest + runs-on: macos-14 steps: - uses: actions/checkout@v4 @@ -19,9 +19,8 @@ jobs: distribution: 'zulu' java-version: 19 - - name: Build and publish artifacts + - run: ./gradlew publish env: ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }} ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }} ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.ARTIFACT_SIGNING_PRIVATE_KEY }} - run: ./gradlew publish diff --git a/CHANGELOG.md b/CHANGELOG.md index 20026923aa..5fb5b8d657 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,22 @@ Change Log ========== -## Version 3.10.0 +## Version 3.10.1 -_2025-01-06_ +_2025-01-07_ * 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.10.0 + +_2025-01-06_ + +This version is equivalent to the subsequent 3.10.1, but it did not fully publish to Maven Central due to infrastructure problems. + + ## Version 3.9.1 _2024-09-12_ diff --git a/docs/index.md b/docs/index.md index 5a21168e57..7039d7d827 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.10.0") +implementation("com.squareup.okio:okio:3.10.1") ```
diff --git a/gradle.properties b/gradle.properties index faea85acdf..2640d60090 100644 --- a/gradle.properties +++ b/gradle.properties @@ -12,4 +12,4 @@ kotlin.mpp.commonizerLogLevel=info kotlin.mpp.stability.nowarn=true GROUP=com.squareup.okio -VERSION_NAME=3.11.0-SNAPSHOT +VERSION_NAME=3.10.1