From ce123f4f88e9a74140a64aa03c2b9e0f8054bca3 Mon Sep 17 00:00:00 2001 From: philipp Date: Sun, 4 Sep 2022 07:30:23 +0200 Subject: [PATCH 1/3] Prepare 0.10.4 (1) changelog --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e2032c4c..d2b40b5db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.10.4 + - Add `EitherOrBoth::or` and `EitherOrBoth::or_else` (#593) + - Add `min_set`, `max_set` et al. (#613, #323) + - Use `either/use_std` (#628) + - Documentation fixes (#612, #625, #632, #633, #634, #638) + - Code maintenance (#623, #624, #627, #630) + ## 0.10.2 - Add `Itertools::multiunzip` (#362, #565) - Add `intersperse` and `intersperse_with` free functions (#555) From a7eebd5fd4b1ba118e9f0febfdf80a5d781b0f45 Mon Sep 17 00:00:00 2001 From: philipp Date: Sun, 4 Sep 2022 07:30:23 +0200 Subject: [PATCH 2/3] Prepare 0.10.4 (2) Cargo.toml --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 15ddfa8f3..53d4a6ff0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "itertools" -version = "0.10.3" +version = "0.10.4" license = "MIT/Apache-2.0" repository = "https://github.com/rust-itertools/itertools" From 2434a1054b0f170b4ac26d90ce1dafda2a06bfd8 Mon Sep 17 00:00:00 2001 From: philipp Date: Sun, 4 Sep 2022 07:30:23 +0200 Subject: [PATCH 3/3] Prepare 0.10.4 (3) README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4cc3f8fd3..732b41b45 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ How to use with Cargo: ```toml [dependencies] -itertools = "0.10.2" +itertools = "0.10.4" ``` How to use in your crate: