Skip to content

Commit c349b7e

Browse files
committed
Advance version to 0.5.0, prepare changelog, update readme
1 parent 8dc7e2e commit c349b7e

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

CHANGELOG.md

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

3+
## 0.5.0
4+
5+
- Update Kotlin dependency to 1.9.21, kotlinx.serialization to 1.6.2
6+
- Add support of Wasm-Js target through Js interop with the same js-joda library as in Js ([#315](https://github.com/Kotlin/kotlinx-datetime/pull/315))
7+
- Prevent secondary outputs of Java 9 compilation getting packed into jar ([#305](https://github.com/Kotlin/kotlinx-datetime/pull/305))
8+
39
## 0.4.1
410

511
- Update Kotlin dependency to 1.8.21, kotlinx.serialization to 1.5.1

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ val localDateTimeTwoDaysLater = instantTwoDaysLater.toLocalDateTime(timeZone)
287287
The implementation of date/time types, such as `Instant`, `LocalDateTime`, `TimeZone` and so on, relies on:
288288

289289
- in JVM: [`java.time`](https://docs.oracle.com/javase/8/docs/api/java/time/package-summary.html) API;
290-
- in JS: [`js-joda`](https://js-joda.github.io/js-joda/) library;
290+
- in Js and Wasm-Js: [`js-joda`](https://js-joda.github.io/js-joda/) library;
291291
- in Native: based on the [ThreeTen backport project](https://www.threeten.org/threetenbp/)
292292
- time zone support is provided by [date](https://github.com/HowardHinnant/date/) C++ library;
293293

@@ -303,7 +303,7 @@ The implementation of date/time types, such as `Instant`, `LocalDateTime`, `Time
303303
304304
The library is published to Maven Central.
305305

306-
The library is compatible with the Kotlin Standard Library not lower than `1.5.0`.
306+
The library is compatible with the Kotlin Standard Library not lower than `1.9.0`.
307307

308308
If you target Android devices running **below API 26**, you need to use Android Gradle plugin 4.0 or newer
309309
and enable [core library desugaring](https://developer.android.com/studio/write/java8-support#library-desugaring).
@@ -324,7 +324,7 @@ kotlin {
324324
sourceSets {
325325
commonMain {
326326
dependencies {
327-
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.4.1")
327+
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.5.0")
328328
}
329329
}
330330
}
@@ -335,7 +335,7 @@ kotlin {
335335

336336
```groovy
337337
dependencies {
338-
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.4.1")
338+
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.5.0")
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.1</version>
378+
<version>0.5.0</version>
379379
</dependency>
380380
```
381381

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.4.1
5+
version=0.5.0
66
versionSuffix=SNAPSHOT
77

88
defaultKotlinVersion=1.9.21

0 commit comments

Comments
 (0)