Skip to content

Commit b9f60d4

Browse files
committed
Update library version in README, add maven central badge
1 parent 6f3b7ea commit b9f60d4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![JetBrains incubator project](https://jb.gg/badges/incubator.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
44
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)
5-
<!-- [ ![Download](https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.datetime/images/download.svg) ](https://bintray.com/kotlin/kotlinx/kotlinx.datetime/_latestVersion) -->
5+
[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-datetime.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22org.jetbrains.kotlinx%22%20AND%20a:%22kotlinx-datetime%22)
66

77

88
A multiplatform Kotlin library for working with date and time.
@@ -247,7 +247,7 @@ The implementation of date/time types, such as `Instant`, `LocalDateTime`, `Time
247247
248248
The library is published to Maven Central.
249249

250-
The library depends on the Kotlin Standard Library not lower than `1.4.0`.
250+
The library is compatible with the Kotlin Standard Library not lower than `1.5.0`.
251251

252252
If you target Android devices running **below API 26**, you need to use Android Gradle plugin 4.0 or newer
253253
and enable [core library desugaring](https://developer.android.com/studio/write/java8-support#library-desugaring).
@@ -268,7 +268,7 @@ kotlin {
268268
sourceSets {
269269
commonMain {
270270
dependencies {
271-
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.1.1")
271+
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.2.0")
272272
}
273273
}
274274
}
@@ -279,7 +279,7 @@ kotlin {
279279

280280
```groovy
281281
dependencies {
282-
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.1.1")
282+
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.2.0")
283283
}
284284
```
285285

@@ -319,7 +319,7 @@ Add a dependency to the `<dependencies>` element. Note that you need to use the
319319
<dependency>
320320
<groupId>org.jetbrains.kotlinx</groupId>
321321
<artifactId>kotlinx-datetime-jvm</artifactId>
322-
<version>0.1.1</version>
322+
<version>0.2.0</version>
323323
</dependency>
324324
```
325325

0 commit comments

Comments
 (0)