Skip to content

Commit 1dae118

Browse files
committed
Release 0.5.4
1 parent da34f10 commit 1dae118

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

CHANGELOG.md

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

3+
## 0.5.4
4+
> Published 17 September 2024
5+
6+
### Features
7+
- Extended Unsafe API with a function allowing to iterate over all Buffer's segments [#383](https://github.com/Kotlin/kotlinx-io/pull/383)
8+
- Implemented `ByteString` conversion to/from `NSData` on Apple platforms [#384](https://github.com/Kotlin/kotlinx-io/pull/384)
9+
- Implemented extensions to read/write `ByteString` from to/from `ByteBuffer`, as well as representing
10+
`ByteString` as a read-only `ByteBuffer` on JVM [#387](https://github.com/Kotlin/kotlinx-io/pull/387)
11+
- Implemented `ByteString` factory accepting unsigned bytes [#390](https://github.com/Kotlin/kotlinx-io/pull/390)
12+
- Reimplemented various functions using Unsafe API [#337](https://github.com/Kotlin/kotlinx-io/pull/337)
13+
- Minor documentation improvements
14+
315
## 0.5.3
416
> Published 19 August 2024
517

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ repositories {
4848
Add the library to dependencies:
4949
```kotlin
5050
dependencies {
51-
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.5.3")
51+
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.5.4")
5252
}
5353
```
5454

@@ -58,7 +58,7 @@ kotlin {
5858
sourceSets {
5959
commonMain {
6060
dependencies {
61-
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.5.3")
61+
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.5.4")
6262
}
6363
}
6464
}
@@ -72,7 +72,7 @@ Add the library to dependencies:
7272
<dependency>
7373
<groupId>org.jetbrains.kotlinx</groupId>
7474
<artifactId>kotlinx-io-core-jvm</artifactId>
75-
<version>0.5.3</version>
75+
<version>0.5.4</version>
7676
</dependency>
7777
```
7878

0 commit comments

Comments
 (0)