diff options
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | serde_dhall/Cargo.toml | 2 | ||||
-rw-r--r-- | serde_dhall/src/lib.rs | 2 |
5 files changed, 8 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e433d5..3beff63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ #### [Unreleased] +#### [0.7.2] - 2020-10-24 + - Fix `reqwest` feature (https://github.com/Nadrieril/dhall-rust/issues/182) #### [0.7.1] - 2020-10-16 @@ -80,7 +82,8 @@ - Initial release <!-- next-url --> -[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.7.1...HEAD +[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.7.2...HEAD +[0.7.2]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.7.1...serde_dhall-v0.7.2 [0.7.1]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.7.0...serde_dhall-v0.7.1 [0.7.0]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.6.0...serde_dhall-v0.7.0 [0.6.0]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.5.3...serde_dhall-v0.6.0 @@ -1358,7 +1358,7 @@ dependencies = [ [[package]] name = "serde_dhall" -version = "0.7.1" +version = "0.7.2" dependencies = [ "dhall", "dhall_proc_macros", @@ -46,7 +46,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -serde_dhall = "0.7.1" +serde_dhall = "0.7.2" ``` Reading Dhall files is easy and leverages the wonderful [`serde`](https://crates.io/crates/serde) library. diff --git a/serde_dhall/Cargo.toml b/serde_dhall/Cargo.toml index 2ac923e..74905bf 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.7.1" +version = "0.7.2" 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 80cef01..ca3c265 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.7.1")] +#![doc(html_root_url = "https://docs.rs/serde_dhall/0.7.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. |