File tree 3 files changed +9
-4
lines changed
3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## 0.6.0-RC.2
4
+
5
+ - Support Android NDK targets ([ #344 ] ( https://github.com/Kotlin/kotlinx-datetime/pull/344 ) )
6
+ - Ensure ABI compatibility with v0.5.0 ([ #357 ] ( https://github.com/Kotlin/kotlinx-datetime/pull/357 ) )
7
+
3
8
## 0.6.0-RC
4
9
5
10
- Introduce the widely requested API for locale-invariant parsing and formatting ([ #343 ] ( https://github.com/Kotlin/kotlinx-datetime/pull/343 ) )
Original file line number Diff line number Diff line change @@ -435,7 +435,7 @@ kotlin {
435
435
sourceSets {
436
436
commonMain {
437
437
dependencies {
438
- implementation(" org.jetbrains.kotlinx:kotlinx-datetime:0.6.0-RC" )
438
+ implementation(" org.jetbrains.kotlinx:kotlinx-datetime:0.6.0-RC.2 " )
439
439
}
440
440
}
441
441
}
@@ -446,7 +446,7 @@ kotlin {
446
446
447
447
``` groovy
448
448
dependencies {
449
- implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.0-RC")
449
+ implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.0-RC.2 ")
450
450
}
451
451
```
452
452
@@ -486,7 +486,7 @@ Add a dependency to the `<dependencies>` element. Note that you need to use the
486
486
<dependency >
487
487
<groupId >org.jetbrains.kotlinx</groupId >
488
488
<artifactId >kotlinx-datetime-jvm</artifactId >
489
- <version >0.6.0-RC</version >
489
+ <version >0.6.0-RC.2 </version >
490
490
</dependency >
491
491
```
492
492
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx1G -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
2
2
org.gradle.java.installations.fromEnv =JDK_8
3
3
4
4
group =org.jetbrains.kotlinx
5
- version =0.6.0-RC
5
+ version =0.6.0-RC.2
6
6
versionSuffix =SNAPSHOT
7
7
8
8
defaultKotlinVersion =1.9.21
You can’t perform that action at this time.
0 commit comments