Skip to content

Commit e69f92f

Browse files
authored
Version 0.6.2 (#479)
1 parent 6b39f4a commit e69f92f

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG.md

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

3+
## 0.6.2
4+
5+
- Add the Wasm/WASI target support ([#366](https://github.com/Kotlin/kotlinx-datetime/pull/366)). Thanks, @igoriakovlev!
6+
- Add `TimeSource.asClock` ([#164](https://github.com/Kotlin/kotlinx-datetime/pull/164)). Thanks, @hfhbd!
7+
- Implement parsing and formatting day-of-year ([#414](https://github.com/Kotlin/kotlinx-datetime/issues/414))
8+
- Improve the precision of `NSDate` to `Instant` conversions ([#427](https://github.com/Kotlin/kotlinx-datetime/issues/427))
9+
- Deprecate `DatePeriod.plus` and `DateTimePeriod.plus` with a warning ([#381](https://github.com/Kotlin/kotlinx-datetime/issues/381))
10+
- Deprecate `Clock.asTimeSource` with a warning ([#372](https://github.com/Kotlin/kotlinx-datetime/issues/372))
11+
- 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!
12+
- Small tweaks and fixes.
13+
314
## 0.6.1
415

516
- Prohibit parsing non-ASCII digits as numbers in `DateTimeFormat` ([#405](https://github.com/Kotlin/kotlinx-datetime/issues/405))

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.1")
438+
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.2")
439439
}
440440
}
441441
}
@@ -446,7 +446,7 @@ kotlin {
446446

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

@@ -531,7 +531,7 @@ Add a dependency to the `<dependencies>` element. Note that you need to use the
531531
<dependency>
532532
<groupId>org.jetbrains.kotlinx</groupId>
533533
<artifactId>kotlinx-datetime-jvm</artifactId>
534-
<version>0.6.1</version>
534+
<version>0.6.2</version>
535535
</dependency>
536536
```
537537

gradle.properties

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

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

88
tzdbVersion=2025a

0 commit comments

Comments
 (0)