diff --git a/CHANGELOG.md b/CHANGELOG.md index 41c31c1c..6613bc87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # CHANGELOG +## 0.6.2 + +- Add the Wasm/WASI target support ([#366](https://github.com/Kotlin/kotlinx-datetime/pull/366)). Thanks, @igoriakovlev! +- Add `TimeSource.asClock` ([#164](https://github.com/Kotlin/kotlinx-datetime/pull/164)). Thanks, @hfhbd! +- Implement parsing and formatting day-of-year ([#414](https://github.com/Kotlin/kotlinx-datetime/issues/414)) +- Improve the precision of `NSDate` to `Instant` conversions ([#427](https://github.com/Kotlin/kotlinx-datetime/issues/427)) +- Deprecate `DatePeriod.plus` and `DateTimePeriod.plus` with a warning ([#381](https://github.com/Kotlin/kotlinx-datetime/issues/381)) +- Deprecate `Clock.asTimeSource` with a warning ([#372](https://github.com/Kotlin/kotlinx-datetime/issues/372)) +- Fix a bug in `module-info` preventing using `kotlinx.datetime.format` together with JPMS ([#438](https://github.com/Kotlin/kotlinx-datetime/pull/438)). Thanks, @cdelabou! +- Small tweaks and fixes. + ## 0.6.1 - Prohibit parsing non-ASCII digits as numbers in `DateTimeFormat` ([#405](https://github.com/Kotlin/kotlinx-datetime/issues/405)) diff --git a/README.md b/README.md index e988c836..118ef87f 100644 --- a/README.md +++ b/README.md @@ -435,7 +435,7 @@ kotlin { sourceSets { commonMain { dependencies { - implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.1") + implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.2") } } } @@ -446,7 +446,7 @@ kotlin { ```groovy dependencies { - implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.1") + implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.2") } ``` @@ -531,7 +531,7 @@ Add a dependency to the `` element. Note that you need to use the org.jetbrains.kotlinx kotlinx-datetime-jvm - 0.6.1 + 0.6.2 ``` diff --git a/gradle.properties b/gradle.properties index 97d8ba46..bc9e275c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx2G -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 org.gradle.java.installations.fromEnv=JDK_8 group=org.jetbrains.kotlinx -version=0.6.1 +version=0.6.2 versionSuffix=SNAPSHOT tzdbVersion=2025a