Skip to content

Commit

Permalink
Release 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fzhinkin committed Aug 15, 2024
1 parent ecd60a8 commit f9b3400
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# CHANGELOG

## 0.5.2
> Published 15 August 2024
### Features
- Unsafe API method signatures were updated to return number of written/read bytes [#360](https://github.com/Kotlin/kotlinx-io/issues/360)

Note that it's a breaking change as return type is a part of method signature.
However, updated methods are all inline, so in general,
projects depending on libraries that were compiled against the previous version
should not experience binary incompatibility issues after adding a dependency on a never `kotlinx-io` version.

- Added call-in-place contracts to Unsafe API methods [#361](https://github.com/Kotlin/kotlinx-io/issues/361)
- Updated Gradle and some dependencies [#353](https://github.com/Kotlin/kotlinx-io/pull/353)
- Improved build scripts [#371](https://github.com/Kotlin/kotlinx-io/pull/371)
- Removed the `Buffer.buffer` backing field [#366](https://github.com/Kotlin/kotlinx-io/pull/366)

## 0.5.1
> Published 15 July 2024
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.5.1")
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.5.2")
}
```

Expand All @@ -58,7 +58,7 @@ kotlin {
sourceSets {
commonMain {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.5.1")
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.5.2")
}
}
}
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.5.1</version>
<version>0.5.2</version>
</dependency>
```

Expand Down

0 comments on commit f9b3400

Please sign in to comment.