Skip to content

Commit d6f088e

Browse files
authored
Merge pull request #73 from cuviper/release-1.7.0
Release 1.7.0
2 parents f1eca77 + 2370b06 commit d6f088e

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "either"
3-
version = "1.6.1"
3+
version = "1.7.0"
44
authors = ["bluss"]
55
edition = "2018"
66
rust-version = "1.31"

README.rst

+21-1
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,32 @@ __ https://docs.rs/either/
2525
How to use with cargo::
2626

2727
[dependencies]
28-
either = "1.6"
28+
either = "1.7"
2929

3030

3131
Recent Changes
3232
--------------
3333

34+
- 1.7.0
35+
36+
- **MSRV**: ``either`` now requires Rust 1.31 or later.
37+
38+
- Export the macro ``for_both!``, by @thomaseizinger (#58)
39+
40+
- Implement the ``io::Seek`` trait, by @Kerollmops (#60)
41+
42+
- Add new method ``.either_into()`` for ``Into`` conversion, by @TonalidadeHidrica (#63)
43+
44+
- Add new methods ``.factor_ok()``, ``.factor_err()``, and ``.factor_none()``,
45+
by @zachs18 (#67)
46+
47+
- Specialize ``source`` in the ``Error`` implementation, by @thomaseizinger (#69)
48+
49+
- Specialize more iterator methods and implement the ``FusedIterator`` trait,
50+
by @Ten0 (#66) and @cuviper (#71)
51+
52+
- Specialize ``Clone::clone_from``, by @cuviper (#72)
53+
3454
- 1.6.1
3555

3656
- Add new methods ``.expect_left()``, ``.unwrap_left()``,

0 commit comments

Comments
 (0)