Skip to content

Commit d174c5d

Browse files
committed
Release 0.3.4
1 parent dbac7e9 commit d174c5d

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG.md

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

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+
314
## 0.3.3
415
> Published 22 Apr 2024
516

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.3.3")
51+
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.4")
5252
}
5353
```
5454

@@ -58,7 +58,7 @@ kotlin {
5858
sourceSets {
5959
commonMain {
6060
dependencies {
61-
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.3")
61+
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.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.3.3</version>
75+
<version>0.3.4</version>
7676
</dependency>
7777
```
7878

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55

66
group=org.jetbrains.kotlinx
7-
version=0.3.4-SNAPSHOT
7+
version=0.3.5-SNAPSHOT
88
kotlin.code.style=official
99
org.gradle.jvmargs=-Xmx4G
1010
nativeBenchmarksEnabled=true

0 commit comments

Comments
 (0)