diff --git a/Cargo.toml b/Cargo.toml index a7c32e3..a74d49a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "either" -version = "1.13.0" +version = "1.14.0" authors = ["bluss"] edition = "2021" rust-version = "1.63.0" diff --git a/README.rst b/README.rst index 77a8939..d979a29 100644 --- a/README.rst +++ b/README.rst @@ -25,12 +25,20 @@ __ https://docs.rs/either/ How to use with cargo:: [dependencies] - either = "1.12" + either = "1" Recent Changes -------------- +- 1.14.0 + + - **MSRV**: ``either`` now requires Rust 1.63 or later. + + - Implement ``fmt::Write`` for ``Either``, by @yotamofek (#113) + + - Replace ``Into for Either`` with ``From for Result``, by @cuviper (#118) + - 1.13.0 - Add new methods ``.cloned()`` and ``.copied()``, by @ColonelThirtyTwo (#107)