From 89700711aa027c6563fb197078215b3b9b92a415 Mon Sep 17 00:00:00 2001 From: Dmitry Khalanskiy Date: Wed, 28 Feb 2024 08:40:35 +0100 Subject: [PATCH] Version 0.6.0-RC --- CHANGELOG.md | 7 +++++++ README.md | 6 +++--- gradle.properties | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f13f8e7fc..f4b4b17e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +## 0.6.0-RC + +- Introduce the widely requested API for locale-invariant parsing and formatting ([#343](https://github.com/Kotlin/kotlinx-datetime/pull/343)) +- Breaking change: use the fully qualified name of classes in the JSON serializers ([#308](https://github.com/Kotlin/kotlinx-datetime/pull/308)) +- Fix Proguard emitting warning about missing `kotlinx-serialization` classes when serialization is not used ([#336](https://github.com/Kotlin/kotlinx-datetime/pull/336)) +- Reimplement the timezone database handling for Native targets from scratch ([#286](https://github.com/Kotlin/kotlinx-datetime/pull/286), [#327](https://github.com/Kotlin/kotlinx-datetime/pull/327)) + ## 0.5.0 - Update Kotlin dependency to 1.9.21, kotlinx.serialization to 1.6.2 diff --git a/README.md b/README.md index a5f22a887..aca13d861 100644 --- a/README.md +++ b/README.md @@ -435,7 +435,7 @@ kotlin { sourceSets { commonMain { dependencies { - implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.5.0") + implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.0-RC") } } } @@ -446,7 +446,7 @@ kotlin { ```groovy dependencies { - implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.5.0") + implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.0-RC") } ``` @@ -486,7 +486,7 @@ Add a dependency to the `` element. Note that you need to use the org.jetbrains.kotlinx kotlinx-datetime-jvm - 0.5.0 + 0.6.0-RC ``` diff --git a/gradle.properties b/gradle.properties index f1a99ca9f..9ddcffdda 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.5.0 +version=0.6.0-RC versionSuffix=SNAPSHOT defaultKotlinVersion=1.9.21