From 0bdb5831888349b93d920560d81638ff416c2955 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Fri, 12 Apr 2024 17:36:52 -0700 Subject: [PATCH] Release 1.11.0 --- Cargo.toml | 2 +- README.rst | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9892d9c..9320aec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "either" -version = "1.10.0" +version = "1.11.0" authors = ["bluss"] edition = "2018" rust-version = "1.36" diff --git a/README.rst b/README.rst index fc8a646..10ca2dd 100644 --- a/README.rst +++ b/README.rst @@ -25,12 +25,17 @@ __ https://docs.rs/either/ How to use with cargo:: [dependencies] - either = "1.10" + either = "1.11" Recent Changes -------------- +- 1.11.0 + + - Add new trait ``IntoEither`` that is useful to convert to ``Either`` in method chains, + by @SFM61319 (#101) + - 1.10.0 - Add new methods ``.factor_iter()``, ``.factor_iter_mut()``, and ``.factor_into_iter()``