@@ -8,8 +8,29 @@ and this project adheres to
8
8
9
9
## [ Unreleased]
10
10
11
+ ## [ 3.2.1] - 2023-11-14
12
+
13
+ ### Changed
14
+
15
+ - bumped version to fix NPM release
16
+
17
+ ## [ 3.2.0] - 2023-11-14
18
+
19
+ ## Added
20
+
21
+ Many equivalents to Kotlin standard library were added 🎉
22
+
23
+ - Reducers
24
+ - `iter.average()` (inspired by Kotlin's [`sequences.average`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.sequences/average.html))
25
+ - 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))
30
+
11
31
### Changed
12
32
33
+ - added tests for NaN checks in ` iter.sum() ` and ` iter.product() ` .
13
34
- Simplified ` deno.json ` again using the new [ global-exclude] [ global-exclude ]
14
35
feature.
15
36
@@ -40,7 +61,7 @@ and this project adheres to
40
61
41
62
- (:warning : breaking) Fixed typo in ` iter.remember() ` (originally
42
63
` iter.rememeber() ` )
43
- - Point docs to [ deno.land] ( deno.land/x/iter/mod.ts ) rather than
64
+ - Point docs to [ deno.land] ( https:// deno.land/x/iter/mod.ts) rather than
44
65
[ doc.deno.land] ( https://doc.deno.land/https://deno.land/x/iter/mod.ts )
45
66
46
67
## [ 2.6.0] - 2022-08-24
@@ -214,7 +235,9 @@ and this project adheres to
214
235
- ` iter.pair() ` for zipping two iterables.
215
236
- ` iter.concat ` (like ` Array.prototype.concat ` )
216
237
217
- [ unreleased ] : https://github.com/jajaperson/iterable-utilities/compare/v3.1.0...HEAD
238
+ [ unreleased ] : https://github.com/jajaperson/iterable-utilities/compare/v3.2.1...HEAD
239
+ [ 3.2.1 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v3.2.1
240
+ [ 3.2.0 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v3.2.0
218
241
[ 3.1.0 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v3.1.0
219
242
[ 3.0.0 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v3.0.0
220
243
[ 2.6.0 ] : https://github.com/jajaperson/iterable-utilities/releases/tag/v2.6.0
0 commit comments