File tree 3 files changed +15
-4
lines changed 3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## 0.3.4
4
+ > Published 8 May 2024
5
+
6
+ ### Features
7
+ - Kotlin updated to 1.9.24 [ #315 ] ( https://github.com/Kotlin/kotlinx-io/pull/315 )
8
+ - Supported ` linuxArm32Hfp ` target [ #303 ] ( https://github.com/Kotlin/kotlinx-io/issues/303 )
9
+ - Enabled KLib ABI validation
10
+ - Provided extension functions to read (` Source.readCodePointValue ` ) and write (` Sink.writeCodePointValue ` )
11
+ Unicode code point values [ #307 ] ( https://github.com/Kotlin/kotlinx-io/issues/307 )
12
+ - Provided function to list directories (` FileSystem.list ` ) [ #222 ] ( https://github.com/Kotlin/kotlinx-io/issues/222 )
13
+
3
14
## 0.3.3
4
15
> Published 22 Apr 2024
5
16
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.3.3 " )
51
+ implementation(" org.jetbrains.kotlinx:kotlinx-io-core:0.3.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.3.3 " )
61
+ implementation(" org.jetbrains.kotlinx:kotlinx-io-core:0.3.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.3.3 </version >
75
+ <version >0.3.4 </version >
76
76
</dependency >
77
77
```
78
78
Original file line number Diff line number Diff line change 4
4
#
5
5
6
6
group =org.jetbrains.kotlinx
7
- version =0.3.4 -SNAPSHOT
7
+ version =0.3.5 -SNAPSHOT
8
8
kotlin.code.style =official
9
9
org.gradle.jvmargs =-Xmx4G
10
10
nativeBenchmarksEnabled =true
You can’t perform that action at this time.
0 commit comments