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
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## 0.15.0

### Breaking
- Restructure `Position` as struct instead of enum (#1042, #1043)

### 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)
- Specialize `ExactlyOneError::count` (#1046)
- Implement `PeekingNext` for more types, in particular `vec::IntoIter` (#1059, #1073)
- Fix `PadUsing::next_back` (#1082)
- Introduce `[circular_]array_windows`, deprecate `tuple_windows` (#1086)
- Deprecate `tuple_combinations` (replaced by `array_combinations`) (#1085)

### Notable Internal Changes
- Make `into_group_map` code more idiomatic (#1027)
- Fix clippy lints (#1017, #1029, #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