Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading