File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 11# CHANGELOG
22
3+ ## 0.3.8
4+
5+ - Add extension functions to convert Array to persistent collections [ #159 ] ( https://github.com/Kotlin/kotlinx.collections.immutable/issues/159 )
6+ - Don't allocate temporary buffer in SmallPersistentVector.removeAll [ #164 ] ( https://github.com/Kotlin/kotlinx.collections.immutable/pull/164 )
7+ - Avoid creating new PersistentList instance when adding empty collection [ #176 ] ( https://github.com/Kotlin/kotlinx.collections.immutable/pull/176 )
8+ - Fix memory leak in builders [ #193 ] ( https://github.com/Kotlin/kotlinx.collections.immutable/pull/193 )
9+
310## 0.3.7
411
512- Upgrade Kotlin version up to 1.9.21
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ kotlin {
137137 sourceSets {
138138 commonMain {
139139 dependencies {
140- implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.7 ")
140+ implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.8 ")
141141 }
142142 }
143143 }
@@ -153,7 +153,7 @@ Add dependencies (you can also add other modules that you need):
153153<dependency >
154154 <groupId >org.jetbrains.kotlinx</groupId >
155155 <artifactId >kotlinx-collections-immutable-jvm</artifactId >
156- <version >0.3.7 </version >
156+ <version >0.3.8 </version >
157157</dependency >
158158```
159159
You can’t perform that action at this time.
0 commit comments