From 2370b06a68dc0f5380fb6f0e4219dceb4f5c5d35 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Tue, 28 Jun 2022 16:52:26 -0700 Subject: [PATCH] Release 1.7.0 --- Cargo.toml | 2 +- README.rst | 22 +++++++++++++++++++++- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 90ae914..a5beca5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "either" -version = "1.6.1" +version = "1.7.0" authors = ["bluss"] edition = "2018" rust-version = "1.31" diff --git a/README.rst b/README.rst index b6cffe3..992e49c 100644 --- a/README.rst +++ b/README.rst @@ -25,12 +25,32 @@ __ https://docs.rs/either/ How to use with cargo:: [dependencies] - either = "1.6" + either = "1.7" Recent Changes -------------- +- 1.7.0 + + - **MSRV**: ``either`` now requires Rust 1.31 or later. + + - Export the macro ``for_both!``, by @thomaseizinger (#58) + + - Implement the ``io::Seek`` trait, by @Kerollmops (#60) + + - Add new method ``.either_into()`` for ``Into`` conversion, by @TonalidadeHidrica (#63) + + - Add new methods ``.factor_ok()``, ``.factor_err()``, and ``.factor_none()``, + by @zachs18 (#67) + + - Specialize ``source`` in the ``Error`` implementation, by @thomaseizinger (#69) + + - Specialize more iterator methods and implement the ``FusedIterator`` trait, + by @Ten0 (#66) and @cuviper (#71) + + - Specialize ``Clone::clone_from``, by @cuviper (#72) + - 1.6.1 - Add new methods ``.expect_left()``, ``.unwrap_left()``,