Skip to content

Commit f4004db

Browse files
committed
Advance version to 0.4.1, prepare change log, update readme
1 parent 3a3950e commit f4004db

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# CHANGELOG
22

3+
## 0.4.1
4+
5+
- Update Kotlin dependency to 1.8.21, kotlinx.serialization to 1.5.1
6+
- Support more Kotlin/Native targets: `linuxArm64`, `linuxArm32Hfp`, `watchosDeviceArm64`
7+
- Implement [comparable time marks](https://kotlinlang.org/docs/time-measurement.html#measure-differences-in-time) in a time source returned by `Clock.asTimeSource()` ([#271](https://github.com/Kotlin/kotlinx-datetime/pull/271))
8+
- Deprecate `Instant` and `LocalDate` arithmetic operations (`plus` and `minus`) taking `DateTimeUnit` without a number of units ([#247](https://github.com/Kotlin/kotlinx-datetime/pull/247))
9+
- Fix adding small `Duration` to large `Instant` on JS and Native ([#264](https://github.com/Kotlin/kotlinx-datetime/pull/264))
10+
311
## 0.4.0
412

513
- Add the `LocalTime` class for representing time-of-day ([#57](https://github.com/Kotlin/kotlinx-datetime/pull/57)). Thank you, @bishiboosh!

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ kotlin {
324324
sourceSets {
325325
commonMain {
326326
dependencies {
327-
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.4.0")
327+
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.4.1")
328328
}
329329
}
330330
}
@@ -335,7 +335,7 @@ kotlin {
335335

336336
```groovy
337337
dependencies {
338-
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.4.0")
338+
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.4.1")
339339
}
340340
```
341341

@@ -375,7 +375,7 @@ Add a dependency to the `<dependencies>` element. Note that you need to use the
375375
<dependency>
376376
<groupId>org.jetbrains.kotlinx</groupId>
377377
<artifactId>kotlinx-datetime-jvm</artifactId>
378-
<version>0.4.0</version>
378+
<version>0.4.1</version>
379379
</dependency>
380380
```
381381

gradle.properties

Lines changed: 1 addition & 1 deletion
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.4.0
5+
version=0.4.1
66
versionSuffix=SNAPSHOT
77

88
defaultKotlinVersion=1.8.21

0 commit comments

Comments
 (0)