Skip to content

Commit

Permalink
Version 0.6.0-RC.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dkhalanskyjb committed Mar 1, 2024
1 parent 290a666 commit cc8121a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## 0.6.0-RC.2

- Support Android NDK targets ([#344](https://github.com/Kotlin/kotlinx-datetime/pull/344))
- Ensure ABI compatibility with v0.5.0 ([#357](https://github.com/Kotlin/kotlinx-datetime/pull/357))

## 0.6.0-RC

- Introduce the widely requested API for locale-invariant parsing and formatting ([#343](https://github.com/Kotlin/kotlinx-datetime/pull/343))
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ kotlin {
sourceSets {
commonMain {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.0-RC")
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.0-RC.2")
}
}
}
Expand All @@ -446,7 +446,7 @@ kotlin {

```groovy
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.0-RC")
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.0-RC.2")
}
```

Expand Down Expand Up @@ -486,7 +486,7 @@ Add a dependency to the `<dependencies>` element. Note that you need to use the
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-datetime-jvm</artifactId>
<version>0.6.0-RC</version>
<version>0.6.0-RC.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx1G -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
org.gradle.java.installations.fromEnv=JDK_8

group=org.jetbrains.kotlinx
version=0.6.0-RC
version=0.6.0-RC.2
versionSuffix=SNAPSHOT

defaultKotlinVersion=1.9.21
Expand Down

0 comments on commit cc8121a

Please sign in to comment.