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 1
1
# CHANGELOG
2
2
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
+
3
10
## 0.3.7
4
11
5
12
- Upgrade Kotlin version up to 1.9.21
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ kotlin {
137
137
sourceSets {
138
138
commonMain {
139
139
dependencies {
140
- implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.7 ")
140
+ implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.8 ")
141
141
}
142
142
}
143
143
}
@@ -153,7 +153,7 @@ Add dependencies (you can also add other modules that you need):
153
153
<dependency >
154
154
<groupId >org.jetbrains.kotlinx</groupId >
155
155
<artifactId >kotlinx-collections-immutable-jvm</artifactId >
156
- <version >0.3.7 </version >
156
+ <version >0.3.8 </version >
157
157
</dependency >
158
158
```
159
159
You can’t perform that action at this time.
0 commit comments