Skip to content

Commit ceb951d

Browse files
committed
Version 0.6.2
1 parent 52902bd commit ceb951d

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
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

Lines changed: 3 additions & 3 deletions
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

@@ -504,7 +504,7 @@ Add a dependency to the `<dependencies>` element. Note that you need to use the
504504
<dependency>
505505
<groupId>org.jetbrains.kotlinx</groupId>
506506
<artifactId>kotlinx-datetime-jvm</artifactId>
507-
<version>0.6.1</version>
507+
<version>0.6.2</version>
508508
</dependency>
509509
```
510510

gradle.properties

Lines changed: 1 addition & 1 deletion
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=2024a

0 commit comments

Comments
 (0)