Skip to content

Commit

Permalink
Release 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fzhinkin committed May 8, 2024
1 parent dbac7e9 commit d174c5d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# CHANGELOG

## 0.3.4
> Published 8 May 2024
### Features
- Kotlin updated to 1.9.24 [#315](https://github.com/Kotlin/kotlinx-io/pull/315)
- Supported `linuxArm32Hfp` target [#303](https://github.com/Kotlin/kotlinx-io/issues/303)
- Enabled KLib ABI validation
- Provided extension functions to read (`Source.readCodePointValue`) and write (`Sink.writeCodePointValue`)
Unicode code point values [#307](https://github.com/Kotlin/kotlinx-io/issues/307)
- Provided function to list directories (`FileSystem.list`) [#222](https://github.com/Kotlin/kotlinx-io/issues/222)

## 0.3.3
> Published 22 Apr 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.3.3")
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.4")
}
```

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

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#

group=org.jetbrains.kotlinx
version=0.3.4-SNAPSHOT
version=0.3.5-SNAPSHOT
kotlin.code.style=official
org.gradle.jvmargs=-Xmx4G
nativeBenchmarksEnabled=true
Expand Down

0 comments on commit d174c5d

Please sign in to comment.