File tree 3 files changed +32
-2
lines changed
3 files changed +32
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
33
## 0.13.0
4
34
5
35
### Breaking
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " itertools"
3
- version = " 0.13 .0"
3
+ version = " 0.14 .0"
4
4
5
5
license = " MIT OR Apache-2.0"
6
6
repository = " 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:
8
8
9
9
``` toml
10
10
[dependencies ]
11
- itertools = " 0.13 .0"
11
+ itertools = " 0.14 .0"
12
12
```
13
13
14
14
How to use in your crate:
You can’t perform that action at this time.
0 commit comments