From fcce380d5b4588dc5934bc2e5448d1d981761b50 Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Sun, 12 Apr 2020 11:28:36 +0100 Subject: Release serde_dhall version 0.5.2 --- Cargo.lock | 2 +- README.md | 7 +++++-- serde_dhall/Cargo.toml | 2 +- serde_dhall/src/lib.rs | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 33e2bd4..50c2d87 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1038,7 +1038,7 @@ dependencies = [ [[package]] name = "serde_dhall" -version = "0.5.1" +version = "0.5.2" dependencies = [ "dhall 0.5.2", "dhall_proc_macros 0.5.0", diff --git a/README.md b/README.md index 073dc8b..ab8109d 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -serde_dhall = "0.5.1" +serde_dhall = "0.5.2" ``` Reading Dhall files is easy and leverages the wonderful [`serde`](https://crates.io/crates/serde) library. @@ -169,6 +169,8 @@ same name as the corresponding test. #### [Unreleased] +#### [0.5.2] - 2020-04-12 + - Fix #162 - Update to supporting dhall v15.0.0 - Deserialize `Prelude.Map` and `toMap` to a map instead of a list. @@ -218,7 +220,8 @@ same name as the corresponding test. - Initial release -[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.5.1...HEAD +[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.5.2...HEAD +[0.5.2]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.5.1...serde_dhall-v0.5.2 [0.5.1]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.5.0...serde_dhall-v0.5.1 [0.5.0]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.4.0...serde_dhall-v0.5.0 diff --git a/serde_dhall/Cargo.toml b/serde_dhall/Cargo.toml index 0f125cc..6842209 100644 --- a/serde_dhall/Cargo.toml +++ b/serde_dhall/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "serde_dhall" # remember to update html_root_url, README and changelog -version = "0.5.1" +version = "0.5.2" authors = ["Nadrieril "] license = "BSD-2-Clause" description = "Dhall support for serde" diff --git a/serde_dhall/src/lib.rs b/serde_dhall/src/lib.rs index 7c0500e..b220a15 100644 --- a/serde_dhall/src/lib.rs +++ b/serde_dhall/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/serde_dhall/0.5.1")] +#![doc(html_root_url = "https://docs.rs/serde_dhall/0.5.2")] #![warn(missing_docs, missing_doc_code_examples)] //! [Dhall][dhall] is a programmable configuration language that provides a non-repetitive //! alternative to JSON and YAML. -- cgit v1.2.3