diff options
author | Nadrieril | 2020-05-30 15:07:14 +0100 |
---|---|---|
committer | Nadrieril | 2020-05-30 15:07:14 +0100 |
commit | b31f7f3072637135693bac9097cd8b0b9b6d52a7 (patch) | |
tree | bf777d492b1a88d5d1dafe0d50620fd5702659b7 | |
parent | dcfffdc19be0830b7aa6ce699ef5ab3d2409d4fe (diff) |
Release serde_dhall version 0.5.3
-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
@@ -1082,7 +1082,7 @@ dependencies = [ [[package]] name = "serde_dhall" -version = "0.5.2" +version = "0.5.3" dependencies = [ "dhall 0.5.3", "dhall_proc_macros 0.5.0", @@ -46,7 +46,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -serde_dhall = "0.5.2" +serde_dhall = "0.5.3" ``` 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.3] - 2020-05-30 + - Support building on Windows - Support building to wasm @@ -223,7 +225,8 @@ same name as the corresponding test. - Initial release <!-- next-url --> -[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.5.2...HEAD +[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.5.3...HEAD +[0.5.3]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.5.2...serde_dhall-v0.5.3 [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 6bd83d2..99ef7bf 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.2" +version = "0.5.3" 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 b220a15..1243366 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.2")] +#![doc(html_root_url = "https://docs.rs/serde_dhall/0.5.3")] #![warn(missing_docs, missing_doc_code_examples)] //! [Dhall][dhall] is a programmable configuration language that provides a non-repetitive //! alternative to JSON and YAML. |