File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
3
4
+ ## Version 3.12.0
5
+
6
+ _ 2025-05-27_
7
+
8
+ * New: Support an optional end index when searching with ` BufferedSource.indexOf() ` .
9
+ * Fix: Don't do unnecessary work in ` BufferedSource.rangeEquals() ` .
10
+ * Upgrade: [ Kotlin 2.1.21] [ kotlin_2_1_21 ] .
11
+
12
+
4
13
## Version 3.11.0
5
14
6
15
_ 2025-04-09_
@@ -962,6 +971,7 @@ _2014-04-08_
962
971
[ kotlin_1_9_10 ] : https://github.com/JetBrains/kotlin/releases/tag/v1.9.10
963
972
[ kotlin_1_9_21 ] : https://github.com/JetBrains/kotlin/releases/tag/v1.9.21
964
973
[ kotlin_2_1_20 ] : https://github.com/JetBrains/kotlin/releases/tag/v2.1.20
974
+ [ kotlin_2_1_21 ] : https://github.com/JetBrains/kotlin/releases/tag/v2.1.21
965
975
[ loom ] : https://wiki.openjdk.org/display/loom/Getting+started
966
976
[ maven_provided ] : https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html
967
977
[ preview1 ] : https://github.com/WebAssembly/WASI/blob/main/legacy/preview1/docs.md
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.11 .0" )
101
+ implementation(" com.squareup.okio:okio:3.12 .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.11 .0" )
113
+ implementation(" com.squareup.okio:okio:3.12 .0" )
114
114
}
115
115
```
116
116
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.12.0-SNAPSHOT
15
+ VERSION_NAME =3.12.0
You can’t perform that action at this time.
0 commit comments