File tree 2 files changed +15
-3
lines changed
2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
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
+
3
15
## 0.5.3
4
16
> Published 19 August 2024
5
17
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ repositories {
48
48
Add the library to dependencies:
49
49
``` kotlin
50
50
dependencies {
51
- implementation(" org.jetbrains.kotlinx:kotlinx-io-core:0.5.3 " )
51
+ implementation(" org.jetbrains.kotlinx:kotlinx-io-core:0.5.4 " )
52
52
}
53
53
```
54
54
@@ -58,7 +58,7 @@ kotlin {
58
58
sourceSets {
59
59
commonMain {
60
60
dependencies {
61
- implementation(" org.jetbrains.kotlinx:kotlinx-io-core:0.5.3 " )
61
+ implementation(" org.jetbrains.kotlinx:kotlinx-io-core:0.5.4 " )
62
62
}
63
63
}
64
64
}
@@ -72,7 +72,7 @@ Add the library to dependencies:
72
72
<dependency >
73
73
<groupId >org.jetbrains.kotlinx</groupId >
74
74
<artifactId >kotlinx-io-core-jvm</artifactId >
75
- <version >0.5.3 </version >
75
+ <version >0.5.4 </version >
76
76
</dependency >
77
77
```
78
78
You can’t perform that action at this time.
0 commit comments