Skip to content

Commit 0329b9d

Browse files
committed
Release 0.7.0
1 parent 64dc8c7 commit 0329b9d

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# CHANGELOG
22

3+
## 0.7.0
4+
> Published 26 February 2025
5+
6+
### Features
7+
- Implemented Okio adapters shipped in a `kotlinx-io-okio` module [#178](https://github.com/Kotlin/kotlinx-io/issues/178)
8+
- Bumped up the Kotlin version to 2.1, as well as version of some dependencies [#426](https://github.com/Kotlin/kotlinx-io/issues/426)
9+
10+
### Bugfixes
11+
- Error codes from various POSIX-ish calls are now always checked and propagated [#262](https://github.com/Kotlin/kotlinx-io/issues/262)
12+
- Behavior of `indexOf` functions accepting `ByteString` is now aligned with `CharSequence.indexOf` [#422](https://github.com/Kotlin/kotlinx-io/issues/422), [#423](https://github.com/Kotlin/kotlinx-io/issues/423)
13+
314
## 0.6.0
415
> Published 19 November 2024
516

README.md

+3-3
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.6.0")
52+
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.7.0")
5353
}
5454
```
5555

@@ -59,7 +59,7 @@ kotlin {
5959
sourceSets {
6060
commonMain {
6161
dependencies {
62-
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.6.0")
62+
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.7.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.6.0</version>
76+
<version>0.7.0</version>
7777
</dependency>
7878
```
7979

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55

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

0 commit comments

Comments
 (0)