Skip to content

Commit defd5fb

Browse files
committed
Prepare for release 3.13.0.
1 parent 4e40f38 commit defd5fb

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,19 @@ Change Log
33

44
## Unreleased
55

6-
* In-development snapshots are now published to the Central Portal Snapshots repository at https://central.sonatype.com/repository/maven-snapshots/.
6+
* None yet.
7+
8+
9+
## Version 3.13.0
10+
11+
_2025-06-13_
12+
13+
* New: `okio.Socket` interface. This is a first step towards low-level streaming networking support
14+
for Kotlin/Multiplatform. This release provides two JVM-only implementations: `asOkioSocket()`
15+
adapts a `java.net.Socket` to our new interface, and `inMemorySocketPair()` returns a pair of
16+
mutually-connected sockets. We also anticipate that this interface will be a useful abstraction
17+
for proxies and tunnels.
18+
* New: In-development snapshots are now published to the [Central Portal Snapshots repository].
719

820

921
## Version 3.12.0
@@ -962,6 +974,7 @@ _2014-04-08_
962974
* Imported from OkHttp.
963975

964976

977+
[Central Portal Snapshots repository]: https://central.sonatype.org/publish/publish-portal-snapshots/
965978
[bom]: https://docs.gradle.org/6.2/userguide/platforms.html#sub:bom_import
966979
[datetime_0_3_0]: https://github.com/Kotlin/kotlinx-datetime/releases/tag/v0.3.0
967980
[gradle_metadata]: https://blog.gradle.org/gradle-metadata-1.0

docs/index.md

Lines changed: 2 additions & 2 deletions
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.12.0")
101+
implementation("com.squareup.okio:okio:3.13.0")
102102
```
103103

104104
<details>
@@ -110,7 +110,7 @@ repositories {
110110
}
111111

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

docs/releasing.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ Releasing
1717
"s/VERSION_NAME=.*/VERSION_NAME=$RELEASE_VERSION/g" \
1818
gradle.properties
1919
sed -i "" \
20-
"s/\"com.squareup.okio:\([^\:]*\):[^\"]*\"/\"com.squareup.okio:\1:$RELEASE_VERSION\"/g" \
20+
"s/\"com.squareup.okio:\([^\:]*\):[0-9.]*\"/\"com.squareup.okio:\1:$RELEASE_VERSION\"/g" \
21+
`find . -name "index.md"`
22+
sed -i "" \
23+
"s/\"com.squareup.okio:\([^\:]*\):[0-9.]*-SNAPSHOT\"/\"com.squareup.okio:\1:$NEXT_VERSION\"/g" \
2124
`find . -name "index.md"`
2225
2326
git commit -am "Prepare for release $RELEASE_VERSION."

gradle.properties

Lines changed: 1 addition & 1 deletion
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.13.0-SNAPSHOT
15+
VERSION_NAME=3.13.0

0 commit comments

Comments
 (0)