From bae3fe3e9b6141ceb13df204c7413c8bbb9ae078 Mon Sep 17 00:00:00 2001 From: Filipp Zhinkin Date: Mon, 18 Mar 2024 10:12:59 +0100 Subject: [PATCH] Release 0.3.2 --- CHANGELOG.md | 8 ++++++++ README.md | 6 +++--- gradle.properties | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9edeb1aa5..874372712 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,12 @@ # CHANGELOG + +## 0.3.2 +> Published 18 Mar 2024 + +### Features +- Implemented basic filesystem support for Wasm WASI target [#257](https://github.com/Kotlin/kotlinx-io/pull/257) +- Enabled native benchmarks by default [#263](https://github.com/Kotlin/kotlinx-io/pull/263) + ## 0.3.1 > Published 2 Feb 2024 diff --git a/README.md b/README.md index 0368a4baf..9b0df5e1c 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ repositories { Add the library to dependencies: ```kotlin dependencies { - implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.1") + implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.2") } ``` @@ -58,7 +58,7 @@ kotlin { sourceSets { commonMain { dependencies { - implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.1") + implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.2") } } } @@ -72,7 +72,7 @@ Add the library to dependencies: org.jetbrains.kotlinx kotlinx-io-core-jvm - 0.3.1 + 0.3.2 ``` diff --git a/gradle.properties b/gradle.properties index def6ef561..ecaf86b42 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ # group=org.jetbrains.kotlinx -version=0.3.1-SNAPSHOT +version=0.3.3-SNAPSHOT kotlin.code.style=official org.gradle.jvmargs=-Xmx4G nativeBenchmarksEnabled=true