Skip to content

Commit 89e63fb

Browse files
Abduqodiri Qurbonzodaqurbonzoda
Abduqodiri Qurbonzoda
authored andcommitted
Update README.md and CHANGELOG.md for 0.3.7 release
1 parent a4b9fb7 commit 89e63fb

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## 0.3.7
4+
5+
- Upgrade Kotlin version up to 1.9.21
6+
- Support wasmJs and wasmWasi targets
7+
38
## 0.3.6
49

510
- Upgrade Kotlin version up to 1.9.0

README.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@
55
[![GitHub license](https://img.shields.io/github/license/kotlin/kotlinx.collections.immutable)](LICENSE.txt)
66
[![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)
77
[![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)
98

109
Immutable collection interfaces and implementation prototypes for Kotlin.
1110

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`
1312
and all [targets supported by the Kotlin/Native compiler](https://kotlinlang.org/docs/native-target-support.html).
1413

1514
For further details see the [proposal](proposal.md).
@@ -119,7 +118,7 @@ collection.mutate { some_actions_on(it) }
119118
120119
The library is published to Maven Central repository.
121120

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`.
123122

124123
### Gradle
125124

@@ -138,7 +137,7 @@ kotlin {
138137
sourceSets {
139138
commonMain {
140139
dependencies {
141-
implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.6")
140+
implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.7")
142141
}
143142
}
144143
}
@@ -154,7 +153,7 @@ Add dependencies (you can also add other modules that you need):
154153
<dependency>
155154
<groupId>org.jetbrains.kotlinx</groupId>
156155
<artifactId>kotlinx-collections-immutable-jvm</artifactId>
157-
<version>0.3.6</version>
156+
<version>0.3.7</version>
158157
</dependency>
159158
```
160159

0 commit comments

Comments
 (0)