Skip to content

Commit 15c33ae

Browse files
committed
Release 0.8.0
1 parent 358cb7d commit 15c33ae

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# CHANGELOG
22

3+
## 0.8.0
4+
> Published 24 June 2025
5+
6+
### Features
7+
- Updated Kotlin version to 2.2, Dokka to 2.0.0 and also updated few other dependencies [#455](https://github.com/Kotlin/kotlinx-io/pull/455), [#432](https://github.com/Kotlin/kotlinx-io/pull/432), [#442](https://github.com/Kotlin/kotlinx-io/pull/442), [#456](https://github.com/Kotlin/kotlinx-io/pull/456)
8+
- Increased deprecation level for `kotlinx.io.files.Path.source` and `kotlinx.io.files.Path.sink` to `ERROR` [#457](https://github.com/Kotlin/kotlinx-io/pull/457)
9+
### Bugfixes
10+
- Fixed `ArrayIndexOutOfBoundsException` thrown from `okio.Sink.asKotlinxIoRawSink` [#453](https://github.com/Kotlin/kotlinx-io/pull/453)
11+
312
## 0.7.0
413
> Published 26 February 2025
514

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ repositories {
4949
Add the library to dependencies:
5050
```kotlin
5151
dependencies {
52-
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.7.0")
52+
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.8.0")
5353
}
5454
```
5555

@@ -59,7 +59,7 @@ kotlin {
5959
sourceSets {
6060
commonMain {
6161
dependencies {
62-
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.7.0")
62+
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.8.0")
6363
}
6464
}
6565
}
@@ -73,7 +73,7 @@ Add the library to dependencies:
7373
<dependency>
7474
<groupId>org.jetbrains.kotlinx</groupId>
7575
<artifactId>kotlinx-io-core-jvm</artifactId>
76-
<version>0.7.0</version>
76+
<version>0.8.0</version>
7777
</dependency>
7878
```
7979

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55

66
group=org.jetbrains.kotlinx
7-
version=0.8.0-SNAPSHOT
7+
version=0.9.0-SNAPSHOT
88
kotlin.code.style=official
99
org.gradle.jvmargs=-Xmx4G
1010
nativeBenchmarksEnabled=true

0 commit comments

Comments
 (0)