File tree Expand file tree Collapse file tree 3 files changed +32
-2
lines changed Expand file tree Collapse file tree 3 files changed +32
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.14.0
4+
5+ ### Breaking
6+ - Increased MSRV to 1.63.0 (#960 )
7+ - Removed generic parameter from ` cons_tuples ` (#988 )
8+
9+ ### Added
10+ - Added ` array_combinations ` (#991 )
11+ - Added ` k_smallest_relaxed ` and variants (#925 )
12+ - Implemented ` DoubleEndedIterator ` for ` FilterOk ` (#948 )
13+ - Implemented ` DoubleEndedIterator ` for ` FilterMapOk ` (#950 )
14+
15+ ### Changed
16+ - Allow ` Q: ?Sized ` in ` Itertools::contains ` (#971 )
17+ - Improved hygiene of ` chain! ` (#943 )
18+ - Improved ` into_group_map_by ` documentation (#1000 )
19+ - Improved ` tree_reduce ` documentation (#955 )
20+ - Improved discoverability of ` merge_join_by ` (#966 )
21+ - Improved discoverability of ` take_while_inclusive ` (#972 )
22+ - Improved documentation of ` find_or_last ` and ` find_or_first ` (#984 )
23+ - Prevented exponentially large type sizes in ` tuple_combinations ` (#945 )
24+ - Added ` track_caller ` attr for ` asser_equal ` (#976 )
25+
26+ ### Notable Internal Changes
27+ - Fixed clippy lints (#956 , #987 , #1008 )
28+ - Addressed warnings within doctests (#964 )
29+ - CI: Run most tests with miri (#961 )
30+ - CI: Speed up "cargo-semver-checks" action (#938 )
31+ - Changed an instance of ` default_features ` in ` Cargo.toml ` to ` default-features ` (#985 )
32+
333## 0.13.0
434
535### Breaking
Original file line number Diff line number Diff line change 11[package ]
22name = " itertools"
3- version = " 0.13 .0"
3+ version = " 0.14 .0"
44
55license = " MIT OR Apache-2.0"
66repository = " https://github.com/rust-itertools/itertools"
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ How to use with Cargo:
88
99``` toml
1010[dependencies ]
11- itertools = " 0.13 .0"
11+ itertools = " 0.14 .0"
1212```
1313
1414How to use in your crate:
You can’t perform that action at this time.
0 commit comments