From 3c3d5addf2cf49cb5ff56c640ef969f6dffef5d1 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Mon, 10 Aug 2020 15:51:53 -0700 Subject: [PATCH] Release 1.6.0 --- Cargo.toml | 2 +- README.rst | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2621603..1ece804 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "either" -version = "1.5.3" +version = "1.6.0" authors = ["bluss"] license = "MIT/Apache-2.0" diff --git a/README.rst b/README.rst index 5738884..f95fe42 100644 --- a/README.rst +++ b/README.rst @@ -25,12 +25,17 @@ __ https://docs.rs/either/ How to use with cargo:: [dependencies] - either = "1.5" + either = "1.6" Recent Changes -------------- +- 1.6.0 + + - Add new modules ``serde_untagged`` and ``serde_untagged_optional`` to customize + how ``Either`` fields are serialized in other types, by @MikailBag (#49) + - 1.5.3 - Add new method ``.map()`` for ``Either`` by @nvzqz (#40).