Skip to content

Commit 0ef6b7e

Browse files
committed
prepare v0.11.0 release
1 parent c5b64c9 commit 0ef6b7e

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## 0.11.0
4+
5+
### Breaking
6+
- Make `Itertools::merge_join_by` also accept functions returning bool (#704)
7+
- Implement `PeekingNext` transitively over mutable references (#643)
8+
- Change `with_position` to yield `(Position, Item)` instead of `Position<Item>` (#699)
9+
10+
### Added
11+
- Add `Itertools::take_while_inclusive` (#616)
12+
- Implement `PeekingNext` for `PeekingTakeWhile` (#644)
13+
- Add `EitherOrBoth::{just_left, just_right, into_left, into_right, as_deref, as_deref_mut, left_or_insert, right_or_insert, left_or_insert_with, right_or_insert_with, insert_left, insert_right, insert_both}` (#629)
14+
- Implement `Clone` for `CircularTupleWindows` (#686)
15+
- Implement `Clone` for `Chunks` (#683)
16+
- Add `Itertools::process_results` (#680)
17+
18+
### Changed
19+
- Use `Cell` instead of `RefCell` in `Format` and `FormatWith` (#608)
20+
- CI tweaks (#674, #675)
21+
- Document and test the difference between stable and unstable sorts (#653)
22+
- Fix documentation error on `Itertools::max_set_by_key` (#692)
23+
- Move MSRV metadata to `Cargo.toml` (#672)
24+
- Implement `equal` with `Iterator::eq` (#591)
25+
326
## 0.10.5
427
- Maintenance
528

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ How to use with Cargo:
1111

1212
```toml
1313
[dependencies]
14-
itertools = "0.10.5"
14+
itertools = "0.11.0"
1515
```
1616

1717
How to use in your crate:

0 commit comments

Comments
 (0)