File tree 3 files changed +19
-3
lines changed
3 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
3
4
+ ## Version 3.4.0
5
+
6
+ _ 2023-07-07_
7
+
8
+ * New: Adapt a Java NIO FileSystem (` java.nio.file.FileSystem ` ) as an Okio FileSystem using
9
+ ` fileSystem.asOkioFileSystem() ` .
10
+ * New: Adapt Android’s ` AssetManager ` as an Okio FileSystem using ` AssetFileSystem ` . This is in the
11
+ new ` okio-assetfilesystem ` module. Android applications should prefer this over
12
+ ` FileSystem.RESOURCES ` as it’s faster to load.
13
+ * Fix: Don't crash decoding GZIP files when the optional extra data (` XLEN ` ) is 32 KiB or larger.
14
+ * Fix: Resolve symlinks in ` FakeFileSystem.canonicalize() ` .
15
+ * Fix: Report the correct ` createdAtMillis ` in ` NodeJsFileSystem ` file metadata. We were
16
+ incorrectly using ` ctimeMs ` , where ` c ` means _ changed_ , not _ created_ .
17
+ * Fix: ` UnsafeCursor ` is now ` Closeable ` .
18
+
19
+
4
20
## Version 3.3.0
5
21
6
22
_ 2023-01-07_
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.3 .0" )
98
+ implementation(" com.squareup.okio:okio:3.4 .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.3 .0" )
110
+ implementation(" com.squareup.okio:okio:3.4 .0" )
111
111
}
112
112
```
113
113
Original file line number Diff line number Diff line change @@ -16,5 +16,5 @@ kotlin.mpp.stability.nowarn=true
16
16
kotlin.mpp.enableCompatibilityMetadataVariant =true
17
17
18
18
GROUP =com.squareup.okio
19
- VERSION_NAME =3.4.0-SNAPSHOT
19
+ VERSION_NAME =3.4.0
20
20
kotlin.mpp.commonizerLogLevel =info
You can’t perform that action at this time.
0 commit comments