File tree Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
3
4
+ ## Version 3.5.0
5
+
6
+ _ 2023-08-02_
7
+
8
+ * New: Support the WebAssembly (WASM) platform. Okio's support for WASM is experimental, but
9
+ improving, just like Kotlin's own support for WASM.
10
+ * New: Adapt WebAssembly System Interface (WASI) API's as an Okio FileSystem using
11
+ ` WasiFileSystem ` . This is in the new ` okio-wasifilesystem ` module. It requires the [ preview1]
12
+ WASI API. We’ll make backwards-incompatible upgrades to new WASI API versions as they become
13
+ available.
14
+ * Fix: Return relative paths in the NIO adapter FileSystem when required. ` FileSystem.list() `
15
+ had always returned absolute paths, even when the target directory was supplied as a relative
16
+ path.
17
+ * Fix: Don't crash when reading into an empty array using ` FileHandle ` on Kotlin/Native.
18
+ * Upgrade: [ Kotlin 1.9.0] [ kotlin_1_9_0 ] .
19
+
20
+
4
21
## Version 3.4.0
5
22
6
23
_ 2023-07-07_
@@ -840,6 +857,8 @@ _2014-04-08_
840
857
[ kotlin_1_5_31 ] : https://github.com/JetBrains/kotlin/releases/tag/v1.5.31
841
858
[ kotlin_1_6_20 ] : https://blog.jetbrains.com/kotlin/2022/04/kotlin-1-6-20-released/
842
859
[ kotlin_1_8_0 ] : https://kotlinlang.org/docs/whatsnew18.html
860
+ [ kotlin_1_9_0 ] : https://kotlinlang.org/docs/whatsnew19.html
843
861
[ loom ] : https://wiki.openjdk.org/display/loom/Getting+started
844
862
[ maven_provided ] : https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html
863
+ [ preview1 ] : https://github.com/WebAssembly/WASI/blob/main/legacy/preview1/docs.md
845
864
[ xor_utf8 ] : https://github.com/square/okio/blob/bbb29c459e5ccf0f286e0b17ccdcacd7ac4bc2a9/okio/src/main/kotlin/okio/Utf8.kt#L302
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ Releases
95
95
Our [ change log] [ changelog ] has release history.
96
96
97
97
``` kotlin
98
- implementation(" com.squareup.okio:okio:3.4 .0" )
98
+ implementation(" com.squareup.okio:okio:3.5 .0" )
99
99
```
100
100
101
101
<details >
@@ -107,7 +107,7 @@ repositories {
107
107
}
108
108
109
109
dependencies {
110
- implementation(" com.squareup.okio:okio:3.4 .0" )
110
+ implementation(" com.squareup.okio:okio:3.5 .0" )
111
111
}
112
112
```
113
113
Original file line number Diff line number Diff line change @@ -15,5 +15,5 @@ kotlin.mpp.stability.nowarn=true
15
15
kotlin.mpp.enableCompatibilityMetadataVariant =true
16
16
17
17
GROUP =com.squareup.okio
18
- VERSION_NAME =3.5.0-SNAPSHOT
18
+ VERSION_NAME =3.5.0
19
19
kotlin.mpp.commonizerLogLevel =info
You can’t perform that action at this time.
0 commit comments