@@ -8,6 +8,12 @@ and this project adheres to
8
8
9
9
## [ Unreleased]
10
10
11
+ ## [ 3.2.2] - 2023-11-14
12
+
13
+ ### Changed
14
+
15
+ - lint and format CHANGELOG.md
16
+
11
17
## [ 3.2.1] - 2023-11-14
12
18
13
19
### Changed
@@ -21,12 +27,17 @@ and this project adheres to
21
27
Many equivalents to Kotlin standard library were added 🎉
22
28
23
29
- Reducers
24
- - `iter.average()` (inspired by Kotlin's [`sequences.average`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.sequences/average.html))
30
+ - ` iter.average() ` (inspired by Kotlin's
31
+ [ ` sequences.average ` ] ( https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.sequences/average.html ) )
25
32
- Transformers
26
- - `iter.takeWhile()` (inspired by Kotlin's [`sequences.takeWhile`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.sequences/take-while.html))
27
- - `iter.drop()` (inspired by Kotlin's [`sequences.drop`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.sequences/drop.html))
28
- - `iter.dropUntil()` (like `iter.until()` but drops til given predicate is true)
29
- - `iter.dropWhile()` (inspired by Kotlin's [`sequences.takeWhile`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.sequences/drop-while.html))
33
+ - ` iter.takeWhile() ` (inspired by Kotlin's
34
+ [ ` sequences.takeWhile ` ] ( https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.sequences/take-while.html ) )
35
+ - ` iter.drop() ` (inspired by Kotlin's
36
+ [ ` sequences.drop ` ] ( https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.sequences/drop.html ) )
37
+ - ` iter.dropUntil() ` (like ` iter.until() ` but drops til given predicate is
38
+ true)
39
+ - ` iter.dropWhile() ` (inspired by Kotlin's
40
+ [ ` sequences.takeWhile ` ] ( https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.sequences/drop-while.html ) )
30
41
31
42
### Changed
32
43
@@ -235,7 +246,8 @@ Many equivalents to Kotlin standard library were added 🎉
235
246
- ` iter.pair() ` for zipping two iterables.
236
247
- ` iter.concat ` (like ` Array.prototype.concat ` )
237
248
238
- [ unreleased ] : https://github.com/jajaperson/iterable-utilities/compare/v3.2.1...HEAD
249
+ [ unreleased ] : https://github.com/jajaperson/iterable-utilities/compare/v3.2.2...HEAD
250
+ [ 3.2.2 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v3.2.2
239
251
[ 3.2.1 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v3.2.1
240
252
[ 3.2.0 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v3.2.0
241
253
[ 3.1.0 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v3.1.0
0 commit comments