Release 1.6.0

This commit is contained in:
Josh Stone
2020-08-10 15:51:53 -07:00
parent b2219b959a
commit 3c3d5addf2
2 changed files with 7 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "either"
version = "1.5.3"
version = "1.6.0"
authors = ["bluss"]
license = "MIT/Apache-2.0"
+6 -1
View File
@@ -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<T, T>`` by @nvzqz (#40).