From 3f40ab4625b8ea3e0eeb894d95557f5790c02776 Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Tue, 15 Sep 2020 00:11:35 +0100 Subject: Release serde_dhall version 0.7.0 --- CHANGELOG.md | 5 ++++- Cargo.lock | 2 +- README.md | 2 +- serde_dhall/Cargo.toml | 2 +- serde_dhall/src/lib.rs | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b06332f..2b6388f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ #### [Unreleased] +#### [0.7.0] - 2020-09-15 + - BREAKING CHANGE: Support Dhall v18.0.0 #### [0.6.0] - 2020-08-05 @@ -71,7 +73,8 @@ - Initial release -[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.6.0...HEAD +[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.7.0...HEAD +[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 [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 diff --git a/Cargo.lock b/Cargo.lock index 44a3c43..86521b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1218,7 +1218,7 @@ dependencies = [ [[package]] name = "serde_dhall" -version = "0.6.0" +version = "0.7.0" dependencies = [ "dhall 0.7.0", "dhall_proc_macros 0.5.0", diff --git a/README.md b/README.md index 1f708c7..35efa5f 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -serde_dhall = "0.6.0" +serde_dhall = "0.7.0" ``` 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 c7dbb54..7ffc390 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.6.0" +version = "0.7.0" 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 d8a093c..534909b 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.6.0")] +#![doc(html_root_url = "https://docs.rs/serde_dhall/0.7.0")] #![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