Skip to content

Commit

Permalink
Merge #706
Browse files Browse the repository at this point in the history
706: prepare v0.11.0 release r=jswrenn a=jswrenn

We're overdue for a release. :-) 

`@phimuemue` let me know if there's any reason I should hold off on releasing. Otherwise, I'll go ahead and get this release out soon.

Co-authored-by: Jack Wrenn <jack@wrenn.fyi>
  • Loading branch information
bors[bot] and jswrenn committed Jun 22, 2023
2 parents c5b64c9 + 0ef6b7e commit bb2fc59
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## 0.11.0

### Breaking
- Make `Itertools::merge_join_by` also accept functions returning bool (#704)
- Implement `PeekingNext` transitively over mutable references (#643)
- Change `with_position` to yield `(Position, Item)` instead of `Position<Item>` (#699)

### Added
- Add `Itertools::take_while_inclusive` (#616)
- Implement `PeekingNext` for `PeekingTakeWhile` (#644)
- 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)
- Implement `Clone` for `CircularTupleWindows` (#686)
- Implement `Clone` for `Chunks` (#683)
- Add `Itertools::process_results` (#680)

### Changed
- Use `Cell` instead of `RefCell` in `Format` and `FormatWith` (#608)
- CI tweaks (#674, #675)
- Document and test the difference between stable and unstable sorts (#653)
- Fix documentation error on `Itertools::max_set_by_key` (#692)
- Move MSRV metadata to `Cargo.toml` (#672)
- Implement `equal` with `Iterator::eq` (#591)

## 0.10.5
- Maintenance

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ How to use with Cargo:

```toml
[dependencies]
itertools = "0.10.5"
itertools = "0.11.0"
```

How to use in your crate:
Expand Down

0 comments on commit bb2fc59

Please sign in to comment.