Skip to content

Commit

Permalink
Release 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fzhinkin committed Feb 2, 2024
1 parent 80a1cbc commit c01f761
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
# CHANGELOG
## 0.3.1
> Published 2 Feb 2024
### Features
- Updated Kotlin to `1.9.22`
- Enabled Wasm Wasi target [#236](https://github.com/Kotlin/kotlinx-io/pull/236) (Note that neither of Wasm targets has filesystem support yet)
- Support path resolution [#228](https://github.com/Kotlin/kotlinx-io/pull/228)

### Bugfixes
- Fixed `Path::parent` behavior on Windows [#227](https://github.com/Kotlin/kotlinx-io/pull/227)
- Aligned behavior of `FileSystem::sink` and `FileSystem::source` across all platforms [#252](https://github.com/Kotlin/kotlinx-io/pull/252)
- Fixed handling of paths containing a whitespace character [#248](https://github.com/Kotlin/kotlinx-io/pull/248)

## 0.3.0
> Published 13 Sep 2023
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ repositories {
Add the library to dependencies:
```kotlin
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.0")
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.1")
}
```

Expand All @@ -58,7 +58,7 @@ kotlin {
sourceSets {
commonMain {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.0")
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.1")
}
}
}
Expand All @@ -72,7 +72,7 @@ Add the library to dependencies:
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-io-core-jvm</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
</dependency>
```

Expand Down

0 comments on commit c01f761

Please sign in to comment.