From a966956250be5ee2700210590df2899db25bd621 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Wed, 17 Aug 2022 11:02:51 -0700 Subject: [PATCH] Release 1.8.0 --- Cargo.toml | 2 +- README.rst | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c95bcdd..5d4c933 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "either" -version = "1.7.0" +version = "1.8.0" authors = ["bluss"] edition = "2018" rust-version = "1.36" diff --git a/README.rst b/README.rst index 25b2832..43c156a 100644 --- a/README.rst +++ b/README.rst @@ -25,13 +25,13 @@ __ https://docs.rs/either/ How to use with cargo:: [dependencies] - either = "1.7" + either = "1.8" Recent Changes -------------- -- UNRELEASED +- 1.8.0 - **MSRV**: ``either`` now requires Rust 1.36 or later. @@ -40,6 +40,8 @@ Recent Changes - Implement the ``Future`` trait, by @cuviper (#77) + - Specialize more methods of the ``io`` traits, by @Kixunil and @cuviper (#75) + - 1.7.0 - **MSRV**: ``either`` now requires Rust 1.31 or later.