diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b08f6830..1f3104440 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## 0.15.0 + +### Changed +- Remove `Clone` bounds from `tuple_combinations` and `array_combinations`(#1011) +- `must_use` for `collect_vec` (#1009) +- Make `izip!` temporary friendly (#1021) +- Add `array_combinations_with_replacement` (#1033) +- Implement `Debug` for remaining public types (#1038) +- Improve `ExactlyOneError` (#1046, #1049) +- Improve documentation for `multizip` (#1053) +- Implement `PeekingNext` for more types (#1073) +- Improve documentation +- Fix `PadUsing::next_back` (#1065) +- Introduce `[circular_]array_windows`, deprecate `tuple_windows` (#1086) + +### Breaking +- Improve `Position` (#1042, #1043) + +### Notable Internal Changes +- Make `into_group_map` code more idiomatic (#1027) +- Fix clippy lints (#1076) + ## 0.14.0 ### Breaking diff --git a/Cargo.toml b/Cargo.toml index 1d8a68f83..ea2f1fe1e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "itertools" -version = "0.14.0" +version = "0.15.0" license = "MIT OR Apache-2.0" repository = "https://github.com/rust-itertools/itertools" diff --git a/README.md b/README.md index 46acc3fca..6628ed7b0 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ How to use with Cargo: ```toml [dependencies] -itertools = "0.14.0" +itertools = "0.15.0" ``` How to use in your crate: