From df9fdb6d9863a213e08243d80d12b2b94592be27 Mon Sep 17 00:00:00 2001 From: Abduqodiri Qurbonzoda Date: Mon, 24 Aug 2020 04:57:13 +0300 Subject: [PATCH] Update README.md with version 0.3.3 usages --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f54823e2..bcce05ff 100644 --- a/README.md +++ b/README.md @@ -113,7 +113,7 @@ collection.mutate { some_actions_on(it) } The library is published to [kotlinx](https://bintray.com/kotlin/kotlinx/kotlinx.collections.immutable) bintray repository and available in jcenter too. -The library depends on the Kotlin Standard Library of the version at least `1.3.70`. +The library depends on the Kotlin Standard Library of the version at least `1.4.0`. ### Gradle @@ -132,7 +132,7 @@ kotlin { sourceSets { commonMain { dependencies { - implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.2") + implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.3") } } } @@ -142,7 +142,7 @@ kotlin { To use the library in a JVM-only project add the platform to the artifact name, e.g.: ```groovy -implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable-jvm:0.3.2") +implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable-jvm:0.3.3") ``` ### Maven @@ -166,7 +166,7 @@ Add dependencies (you can also add other modules that you need): org.jetbrains.kotlinx kotlinx-collections-immutable-jvm - 0.3.2 + 0.3.3 ```