From cc8121a6f677125f2cbaa0537efd60fa6a14ce2e Mon Sep 17 00:00:00 2001 From: Dmitry Khalanskiy Date: Fri, 1 Mar 2024 15:16:29 +0100 Subject: [PATCH] Version 0.6.0-RC.2 --- CHANGELOG.md | 5 +++++ README.md | 6 +++--- gradle.properties | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4b4b17e9..a96368733 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## 0.6.0-RC.2 + +- Support Android NDK targets ([#344](https://github.com/Kotlin/kotlinx-datetime/pull/344)) +- Ensure ABI compatibility with v0.5.0 ([#357](https://github.com/Kotlin/kotlinx-datetime/pull/357)) + ## 0.6.0-RC - Introduce the widely requested API for locale-invariant parsing and formatting ([#343](https://github.com/Kotlin/kotlinx-datetime/pull/343)) diff --git a/README.md b/README.md index aca13d861..acbcf65b8 100644 --- a/README.md +++ b/README.md @@ -435,7 +435,7 @@ kotlin { sourceSets { commonMain { dependencies { - implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.0-RC") + implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.0-RC.2") } } } @@ -446,7 +446,7 @@ kotlin { ```groovy dependencies { - implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.0-RC") + implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.0-RC.2") } ``` @@ -486,7 +486,7 @@ Add a dependency to the `` element. Note that you need to use the org.jetbrains.kotlinx kotlinx-datetime-jvm - 0.6.0-RC + 0.6.0-RC.2 ``` diff --git a/gradle.properties b/gradle.properties index 9ddcffdda..9ce32b34e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx1G -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 org.gradle.java.installations.fromEnv=JDK_8 group=org.jetbrains.kotlinx -version=0.6.0-RC +version=0.6.0-RC.2 versionSuffix=SNAPSHOT defaultKotlinVersion=1.9.21