|
1 | 1 | # Changelog
|
2 | 2 |
|
| 3 | +## 0.10.0 |
| 4 | + - Undeprecate `fold_while` (#476) |
| 5 | + |
| 6 | + - Tuple-related adapters work for tuples of arity up to 12 (#475) |
| 7 | + |
| 8 | + - `use_alloc` feature for users who have `alloc`, but not `std` (#474) |
| 9 | + |
| 10 | + - Add `Itertools::k_smallest` (#473) |
| 11 | + |
| 12 | + - Add `Itertools::into_grouping_map` and `GroupingMap` (#465) |
| 13 | + - Add `Itertools::into_grouping_map_by` and `GroupingMapBy` (#465) |
| 14 | + |
| 15 | + - Add `Itertools::counts` (#468) |
| 16 | + |
| 17 | + - Add implementation of `DoubleEndedIterator` for `Unique` (#442) |
| 18 | + - Add implementation of `DoubleEndedIterator` for `UniqueBy` (#442) |
| 19 | + |
| 20 | + - Add `Itertools::multipeek` (#435) |
| 21 | + |
| 22 | + - Add `Itertools::dedup_with_count` and `DedupWithCount` (#423) |
| 23 | + - Add `Itertools::dedup_by_with_count` and `DedupByWithCount` (#423) |
| 24 | + |
| 25 | + - Add `Itertools::intersperse_with` and `IntersperseWith` (#381) |
| 26 | + |
| 27 | + - Add `Itertools::filter_ok` and `FilterOk` (#377) |
| 28 | + - Add `Itertools::filter_map_ok` and `FilterMapOk` (#377) |
| 29 | + - Deprecate `Itertools::fold_results`, use `Itertools::fold_ok` instead (#377) |
| 30 | + - Deprecate `Itertools::map_results`, use `Itertools::map_ok` instead (#377) |
| 31 | + - Deprecate `FoldResults`, use `FoldOk` instead (#377) |
| 32 | + - Deprecate `MapResults`, use `MapOk` instead (#377) |
| 33 | + |
| 34 | + - Add `Itertools::circular_tuple_windows` and `CircularTupleWindows` (#350) |
| 35 | + |
| 36 | + - Add `peek_nth` and `PeekNth` (#303) |
| 37 | + |
3 | 38 | ## 0.9.0
|
4 | 39 | - Fix potential overflow in `MergeJoinBy::size_hint` (#385)
|
5 | 40 | - Add `derive(Clone)` where possible (#382)
|
|
0 commit comments