From 805cfe835408a7747e6cb3c177a529d83894e945 Mon Sep 17 00:00:00 2001 From: Dmitry Khalanskiy <52952525+dkhalanskyjb@users.noreply.github.com> Date: Tue, 20 Aug 2024 15:58:57 +0200 Subject: [PATCH] Version 0.6.1 (#422) --- 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 384072c1..41c31c1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # CHANGELOG +## 0.6.1 + +- Prohibit parsing non-ASCII digits as numbers in `DateTimeFormat` ([#405](https://github.com/Kotlin/kotlinx-datetime/issues/405)) +- More accurately determine which files represent time zones and which don't on Linux and Darwin ([#395](https://github.com/Kotlin/kotlinx-datetime/pull/395)) +- Fix a regression that occasionally considered the right boundary of a time overlap to be a part of it on Native ([#399](https://github.com/Kotlin/kotlinx-datetime/issues/399)) +- Introduce various small improvements to the timezone handling on Windows ([#390](https://github.com/Kotlin/kotlinx-datetime/pull/390)) +- On Linux, allow not having any `/etc/localtime` set, defaulting to `TimeZone.UTC` as the system time zone ([#426](https://github.com/Kotlin/kotlinx-datetime/pull/426)) + ## 0.6.0 - 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 a9bf3474..9fcab20d 100644 --- a/README.md +++ b/README.md @@ -435,7 +435,7 @@ kotlin { sourceSets { commonMain { dependencies { - implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.0") + implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.1") } } } @@ -446,7 +446,7 @@ kotlin { ```groovy dependencies { - implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.0") + implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.1") } ``` @@ -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 + 0.6.1 ``` diff --git a/gradle.properties b/gradle.properties index 6495a1e6..95611506 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 +version=0.6.1 versionSuffix=SNAPSHOT defaultKotlinVersion=1.9.21