diff options
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | README.md | 7 | ||||
-rw-r--r-- | serde_dhall/Cargo.toml | 2 | ||||
-rw-r--r-- | serde_dhall/src/lib.rs | 2 |
4 files changed, 8 insertions, 5 deletions
@@ -1038,7 +1038,7 @@ dependencies = [ [[package]] name = "serde_dhall" -version = "0.5.0" +version = "0.5.1" dependencies = [ "dhall 0.5.1", "dhall_proc_macros 0.5.0", @@ -46,7 +46,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -serde_dhall = "0.5.0" +serde_dhall = "0.5.1" ``` 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.1] - 2020-04-09 + #### [0.5.0] - 2020-04-05 - Add `serde_dhall::from_file` to read a Dhall file directly. @@ -210,7 +212,8 @@ same name as the corresponding test. - Initial release <!-- next-url --> -[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.5.0...HEAD +[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.5.1...HEAD +[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 ## License diff --git a/serde_dhall/Cargo.toml b/serde_dhall/Cargo.toml index 46aff74..d2820e0 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.0" +version = "0.5.1" authors = ["Nadrieril <nadrieril@users.noreply.github.com>"] license = "BSD-2-Clause" description = "Dhall support for serde" diff --git a/serde_dhall/src/lib.rs b/serde_dhall/src/lib.rs index bff8989..7c0500e 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.0")] +#![doc(html_root_url = "https://docs.rs/serde_dhall/0.5.1")] #![warn(missing_docs, missing_doc_code_examples)] //! [Dhall][dhall] is a programmable configuration language that provides a non-repetitive //! alternative to JSON and YAML. |