From 9138e0fae758d4beb2188d03fbafaa1893e497f5 Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Thu, 4 Feb 2021 16:12:21 +0000 Subject: release: serde_dhall version 0.10.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 695a6d3..4b5ba81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ #### [Unreleased] +#### [0.10.0] - 2021-02-04 + - BREAKING CHANGE: Change minimum supported version to 1.44.0. - BREAKING CHANGE: Support dhall v20.0.0 - `if` can return a type (https://github.com/Nadrieril/dhall-rust/pull/202) @@ -108,7 +110,8 @@ - Initial release -[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.9.0...HEAD +[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.10.0...HEAD +[0.10.0]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.9.0...serde_dhall-v0.10.0 [0.9.0]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.8.0...serde_dhall-v0.9.0 [0.8.0]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.7.5...serde_dhall-v0.8.0 [0.7.5]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.7.4...serde_dhall-v0.7.5 diff --git a/Cargo.lock b/Cargo.lock index fc17b03..6e351e4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1342,7 +1342,7 @@ dependencies = [ [[package]] name = "serde_dhall" -version = "0.9.0" +version = "0.10.0" dependencies = [ "dhall", "dhall_proc_macros", diff --git a/README.md b/README.md index 3974804..dcdcc21 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -serde_dhall = "0.9.0" +serde_dhall = "0.10.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 464924e..147f106 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.9.0" +version = "0.10.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 cd6affd..2a8c8dc 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.9.0")] +#![doc(html_root_url = "https://docs.rs/serde_dhall/0.10.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