Skip to content

Commit

Permalink
Merge #585
Browse files Browse the repository at this point in the history
585: Release 0.10.2 r=jswrenn a=phimuemue

Prepared changelog and Cargo.toml for itertools 0.10.2, requested per #584.

Co-authored-by: philipp <descpl@yahoo.de>
  • Loading branch information
bors[bot] and phimuemue committed Dec 6, 2021
2 parents 3307e4d + defab96 commit e9c9f2f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,16 @@
# Changelog

## 0.10.2
- Add `Itertools::multiunzip` (#362, #565)
- Add `intersperse` and `intersperse_with` free functions (#555)
- Add `Itertools::sorted_by_cached_key` (#424, #575)
- Specialize `ProcessResults::fold` (#563)
- Fix subtraction overflow in `DuplicatesBy::size_hint` (#552)
- Fix specialization tests (#574)
- More `Debug` impls (#573)
- Deprecate `fold1` (use `reduce` instead) (#580)
- Documentation fixes (`HomogenousTuple`, `into_group_map`, `into_group_map_by`, `MultiPeek::peek`) (#543 et al.)

## 0.10.1
- Add `Itertools::contains` (#514)
- Add `Itertools::counts_by` (#515)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "itertools"
version = "0.10.1"
version = "0.10.2"

license = "MIT/Apache-2.0"
repository = "https://github.com/rust-itertools/itertools"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -11,7 +11,7 @@ How to use with Cargo:

```toml
[dependencies]
itertools = "0.10.0"
itertools = "0.10.2"
```

How to use in your crate:
Expand Down

0 comments on commit e9c9f2f

Please sign in to comment.