5
5
[ ![ GitHub license] ( https://img.shields.io/github/license/kotlin/kotlinx.collections.immutable )] ( LICENSE.txt )
6
6
[ ![ Build status] ( https://teamcity.jetbrains.com/guestAuth/app/rest/builds/buildType:(id:KotlinTools_KotlinxCollectionsImmutable_Build_All)/statusIcon.svg )] ( https://teamcity.jetbrains.com/viewType.html?buildTypeId=KotlinTools_KotlinxCollectionsImmutable_Build_All )
7
7
[ ![ Maven Central] ( https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-collections-immutable.svg?label=Maven%20Central )] ( https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-collections-immutable )
8
- [ ![ IR] ( https://img.shields.io/badge/Kotlin%2FJS-IR%20supported-yellow )] ( https://kotl.in/jsirsupported )
9
8
10
9
Immutable collection interfaces and implementation prototypes for Kotlin.
11
10
12
- This is a multiplatform library providing implementations for ` jvm ` , ` js ` ( [ IR ] ( https://kotlinlang.org/docs/js-ir-compiler.html ) ),
11
+ This is a multiplatform library providing implementations for ` jvm ` , ` js ` , ` wasmJs ` , ` wasmWasi `
13
12
and all [ targets supported by the Kotlin/Native compiler] ( https://kotlinlang.org/docs/native-target-support.html ) .
14
13
15
14
For further details see the [ proposal] ( proposal.md ) .
@@ -119,7 +118,7 @@ collection.mutate { some_actions_on(it) }
119
118
120
119
The library is published to Maven Central repository.
121
120
122
- The library depends on the Kotlin Standard Library of the version at least ` 1.9.0 ` .
121
+ The library depends on the Kotlin Standard Library of the version at least ` 1.9.21 ` .
123
122
124
123
### Gradle
125
124
@@ -138,7 +137,7 @@ kotlin {
138
137
sourceSets {
139
138
commonMain {
140
139
dependencies {
141
- implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.6 ")
140
+ implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.7 ")
142
141
}
143
142
}
144
143
}
@@ -154,7 +153,7 @@ Add dependencies (you can also add other modules that you need):
154
153
<dependency >
155
154
<groupId >org.jetbrains.kotlinx</groupId >
156
155
<artifactId >kotlinx-collections-immutable-jvm</artifactId >
157
- <version >0.3.6 </version >
156
+ <version >0.3.7 </version >
158
157
</dependency >
159
158
```
160
159
0 commit comments