From 071f0343ecd8b4d4645d5521adc4f08255a60cb1 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Fri, 9 Feb 2024 17:57:23 -0800 Subject: [PATCH] Release 1.10.0 --- Cargo.toml | 2 +- README.rst | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8d47a6f..44b0f7f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "either" -version = "1.9.0" +version = "1.10.0" authors = ["bluss"] edition = "2018" rust-version = "1.36" diff --git a/README.rst b/README.rst index 2180c88..fc8a646 100644 --- a/README.rst +++ b/README.rst @@ -25,12 +25,18 @@ __ https://docs.rs/either/ How to use with cargo:: [dependencies] - either = "1.8" + either = "1.10" Recent Changes -------------- +- 1.10.0 + + - Add new methods ``.factor_iter()``, ``.factor_iter_mut()``, and ``.factor_into_iter()`` + that return ``Either`` items, plus ``.iter()`` and ``.iter_mut()`` to convert to direct + referene iterators; by @aj-bagwell and @cuviper (#91) + - 1.9.0 - Add new methods ``.map_either()`` and ``.map_either_with()``, by @nasadorian (#82)