Skip to content

Commit 805cfe8

Browse files
authored
Version 0.6.1 (#422)
1 parent a86e7f8 commit 805cfe8

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# CHANGELOG
22

3+
## 0.6.1
4+
5+
- Prohibit parsing non-ASCII digits as numbers in `DateTimeFormat` ([#405](https://github.com/Kotlin/kotlinx-datetime/issues/405))
6+
- 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))
7+
- 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))
8+
- Introduce various small improvements to the timezone handling on Windows ([#390](https://github.com/Kotlin/kotlinx-datetime/pull/390))
9+
- 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))
10+
311
## 0.6.0
412

513
- Introduce the widely requested API for locale-invariant parsing and formatting ([#343](https://github.com/Kotlin/kotlinx-datetime/pull/343))

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ kotlin {
435435
sourceSets {
436436
commonMain {
437437
dependencies {
438-
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.0")
438+
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.1")
439439
}
440440
}
441441
}
@@ -446,7 +446,7 @@ kotlin {
446446

447447
```groovy
448448
dependencies {
449-
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.0")
449+
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.1")
450450
}
451451
```
452452

@@ -486,7 +486,7 @@ Add a dependency to the `<dependencies>` element. Note that you need to use the
486486
<dependency>
487487
<groupId>org.jetbrains.kotlinx</groupId>
488488
<artifactId>kotlinx-datetime-jvm</artifactId>
489-
<version>0.6.0</version>
489+
<version>0.6.1</version>
490490
</dependency>
491491
```
492492

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx1G -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
22
org.gradle.java.installations.fromEnv=JDK_8
33

44
group=org.jetbrains.kotlinx
5-
version=0.6.0
5+
version=0.6.1
66
versionSuffix=SNAPSHOT
77

88
defaultKotlinVersion=1.9.21

0 commit comments

Comments
 (0)