Skip to content

Commit

Permalink
Release 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fzhinkin committed Feb 26, 2025
1 parent 64dc8c7 commit 0329b9d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# CHANGELOG

## 0.7.0
> Published 26 February 2025
### Features
- Implemented Okio adapters shipped in a `kotlinx-io-okio` module [#178](https://github.com/Kotlin/kotlinx-io/issues/178)
- Bumped up the Kotlin version to 2.1, as well as version of some dependencies [#426](https://github.com/Kotlin/kotlinx-io/issues/426)

### Bugfixes
- Error codes from various POSIX-ish calls are now always checked and propagated [#262](https://github.com/Kotlin/kotlinx-io/issues/262)
- 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)

## 0.6.0
> Published 19 November 2024
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ repositories {
Add the library to dependencies:
```kotlin
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.6.0")
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.7.0")
}
```

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

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#

group=org.jetbrains.kotlinx
version=0.6.1-SNAPSHOT
version=0.8.0-SNAPSHOT
kotlin.code.style=official
org.gradle.jvmargs=-Xmx4G
nativeBenchmarksEnabled=true
Expand Down

0 comments on commit 0329b9d

Please sign in to comment.