File tree Expand file tree Collapse file tree 4 files changed +21
-5
lines changed Expand file tree Collapse file tree 4 files changed +21
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,19 @@ Change Log
3
3
4
4
## Unreleased
5
5
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] .
7
19
8
20
9
21
## Version 3.12.0
@@ -962,6 +974,7 @@ _2014-04-08_
962
974
* Imported from OkHttp.
963
975
964
976
977
+ [ Central Portal Snapshots repository ] : https://central.sonatype.org/publish/publish-portal-snapshots/
965
978
[ bom ] : https://docs.gradle.org/6.2/userguide/platforms.html#sub:bom_import
966
979
[ datetime_0_3_0 ] : https://github.com/Kotlin/kotlinx-datetime/releases/tag/v0.3.0
967
980
[ gradle_metadata ] : https://blog.gradle.org/gradle-metadata-1.0
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ Releases
98
98
Our [ change log] [ changelog ] has release history.
99
99
100
100
``` kotlin
101
- implementation(" com.squareup.okio:okio:3.12 .0" )
101
+ implementation(" com.squareup.okio:okio:3.13 .0" )
102
102
```
103
103
104
104
<details >
@@ -110,7 +110,7 @@ repositories {
110
110
}
111
111
112
112
dependencies {
113
- implementation(" com.squareup.okio:okio:3.13 .0-SNAPSHOT" )
113
+ implementation(" com.squareup.okio:okio:3.14 .0-SNAPSHOT" )
114
114
}
115
115
```
116
116
Original file line number Diff line number Diff line change @@ -17,7 +17,10 @@ Releasing
17
17
"s/VERSION_NAME=.*/VERSION_NAME=$RELEASE_VERSION/g" \
18
18
gradle.properties
19
19
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" \
21
24
`find . -name "index.md"`
22
25
23
26
git commit -am "Prepare for release $RELEASE_VERSION."
Original file line number Diff line number Diff line change @@ -12,4 +12,4 @@ kotlin.mpp.commonizerLogLevel=info
12
12
kotlin.mpp.stability.nowarn =true
13
13
14
14
GROUP =com.squareup.okio
15
- VERSION_NAME =3.13.0-SNAPSHOT
15
+ VERSION_NAME =3.13.0
You can’t perform that action at this time.
0 commit comments