Skip to content

Commit

Permalink
Merge pull request #98 from cuviper/release-1.10.0
Browse files Browse the repository at this point in the history
Release 1.10.0
  • Loading branch information
cuviper committed Feb 10, 2024
2 parents 254fbf6 + 5fcb289 commit ede3c47
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Cache the registry
uses: actions/cache@v4
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up nightly Rust
uses: dtolnay/rust-toolchain@nightly
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "either"
version = "1.9.0"
version = "1.10.0"
authors = ["bluss"]
edition = "2018"
rust-version = "1.36"
Expand Down
8 changes: 7 additions & 1 deletion README.rst
Expand Up @@ -25,12 +25,18 @@ __ https://docs.rs/either/
How to use with cargo::

[dependencies]
either = "1.8"
either = "1.10"


Recent Changes
--------------

- 1.10.0

- Add new methods ``.factor_iter()``, ``.factor_iter_mut()``, and ``.factor_into_iter()``
that return ``Either`` items, plus ``.iter()`` and ``.iter_mut()`` to convert to direct
referene iterators; by @aj-bagwell and @cuviper (#91)

- 1.9.0

- Add new methods ``.map_either()`` and ``.map_either_with()``, by @nasadorian (#82)
Expand Down

0 comments on commit ede3c47

Please sign in to comment.