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()``