Skip to content

Commit c01f761

Browse files
committed
Release 0.3.1
1 parent 80a1cbc commit c01f761

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
11
# 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+
215
## 0.3.0
316
> Published 13 Sep 2023
417

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ repositories {
4848
Add the library to dependencies:
4949
```kotlin
5050
dependencies {
51-
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.0")
51+
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.1")
5252
}
5353
```
5454

@@ -58,7 +58,7 @@ kotlin {
5858
sourceSets {
5959
commonMain {
6060
dependencies {
61-
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.0")
61+
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.1")
6262
}
6363
}
6464
}
@@ -72,7 +72,7 @@ Add the library to dependencies:
7272
<dependency>
7373
<groupId>org.jetbrains.kotlinx</groupId>
7474
<artifactId>kotlinx-io-core-jvm</artifactId>
75-
<version>0.3.0</version>
75+
<version>0.3.1</version>
7676
</dependency>
7777
```
7878

0 commit comments

Comments
 (0)