Skip to content

Commit a1213e1

Browse files
committedDec 30, 2024·
Prepare v0.14.0 release
1 parent ff0c942 commit a1213e1

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed
 

‎CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
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

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "itertools"
3-
version = "0.13.0"
3+
version = "0.14.0"
44

55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/rust-itertools/itertools"

‎README.md

+1-1
Original file line numberDiff line numberDiff 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

1414
How to use in your crate:

0 commit comments

Comments
 (0)
Please sign in to comment.