File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
+ ## 0.3.1
3
+ > Published 2 Feb 2024
4
+
5
+ ### Features
6
+ - Updated Kotlin to ` 1.9.22 `
7
+ - Enabled Wasm Wasi target [ #236 ] ( https://github.com/Kotlin/kotlinx-io/pull/236 ) (Note that neither of Wasm targets has filesystem support yet)
8
+ - Support path resolution [ #228 ] ( https://github.com/Kotlin/kotlinx-io/pull/228 )
9
+
10
+ ### Bugfixes
11
+ - Fixed ` Path::parent ` behavior on Windows [ #227 ] ( https://github.com/Kotlin/kotlinx-io/pull/227 )
12
+ - Aligned behavior of ` FileSystem::sink ` and ` FileSystem::source ` across all platforms [ #252 ] ( https://github.com/Kotlin/kotlinx-io/pull/252 )
13
+ - Fixed handling of paths containing a whitespace character [ #248 ] ( https://github.com/Kotlin/kotlinx-io/pull/248 )
14
+
2
15
## 0.3.0
3
16
> Published 13 Sep 2023
4
17
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ repositories {
48
48
Add the library to dependencies:
49
49
``` kotlin
50
50
dependencies {
51
- implementation(" org.jetbrains.kotlinx:kotlinx-io-core:0.3.0 " )
51
+ implementation(" org.jetbrains.kotlinx:kotlinx-io-core:0.3.1 " )
52
52
}
53
53
```
54
54
@@ -58,7 +58,7 @@ kotlin {
58
58
sourceSets {
59
59
commonMain {
60
60
dependencies {
61
- implementation(" org.jetbrains.kotlinx:kotlinx-io-core:0.3.0 " )
61
+ implementation(" org.jetbrains.kotlinx:kotlinx-io-core:0.3.1 " )
62
62
}
63
63
}
64
64
}
@@ -72,7 +72,7 @@ Add the library to dependencies:
72
72
<dependency >
73
73
<groupId >org.jetbrains.kotlinx</groupId >
74
74
<artifactId >kotlinx-io-core-jvm</artifactId >
75
- <version >0.3.0 </version >
75
+ <version >0.3.1 </version >
76
76
</dependency >
77
77
```
78
78
You can’t perform that action at this time.
0 commit comments