From 870e96f648acb727dc931d58e9d91efa1d93a9b3 Mon Sep 17 00:00:00 2001 From: Filipp Zhinkin Date: Mon, 22 Apr 2024 14:59:44 +0200 Subject: [PATCH] Release 0.3.3 --- CHANGELOG.md | 9 +++++++++ README.md | 6 +++--- gradle.properties | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 874372712..5ca75dc07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # CHANGELOG +## 0.3.3 +> Published 22 Apr 2024 + +### Features +- Reimplemented file metadata gathering without required reasoning APIs on Apple targets [#297](https://github.com/Kotlin/kotlinx-io/pull/297) + +### Bugfixes +- For JS target, Webpack should no longer report missing nodejs modules during compilation [#285](https://github.com/Kotlin/kotlinx-io/pull/285) + ## 0.3.2 > Published 18 Mar 2024 diff --git a/README.md b/README.md index 9b0df5e1c..b9d1e8c43 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.2") + implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.3") } ``` @@ -58,7 +58,7 @@ kotlin { sourceSets { commonMain { dependencies { - implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.2") + implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.3") } } } @@ -72,7 +72,7 @@ Add the library to dependencies: org.jetbrains.kotlinx kotlinx-io-core-jvm - 0.3.2 + 0.3.3 ``` diff --git a/gradle.properties b/gradle.properties index ecaf86b42..b00b4c658 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ # group=org.jetbrains.kotlinx -version=0.3.3-SNAPSHOT +version=0.3.4-SNAPSHOT kotlin.code.style=official org.gradle.jvmargs=-Xmx4G nativeBenchmarksEnabled=true