summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNadrieril2020-10-24 15:40:16 +0100
committerNadrieril2020-10-24 15:40:16 +0100
commit49e202de4478c2933f9179ea23efc7d991c35381 (patch)
tree2ab86b4ed6086ce8ee345ead1ffefcc2de3ff1ec
parent2ea18b8ec457c896909fda4db9f053ec26068528 (diff)
Release serde_dhall version 0.7.3
-rw-r--r--CHANGELOG.md5
-rw-r--r--Cargo.lock2
-rw-r--r--README.md2
-rw-r--r--serde_dhall/Cargo.toml2
-rw-r--r--serde_dhall/src/lib.rs2
5 files changed, 8 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ab6cbab..6ed1e64 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
#### [Unreleased]
+#### [0.7.3] - 2020-10-24
+
- Add a `SimpleValue` type to the public interface (https://github.com/Nadrieril/dhall-rust/pull/183)
#### [0.7.2] - 2020-10-24
@@ -84,7 +86,8 @@
- Initial release
<!-- next-url -->
-[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.7.2...HEAD
+[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.7.3...HEAD
+[0.7.3]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.7.2...serde_dhall-v0.7.3
[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
diff --git a/Cargo.lock b/Cargo.lock
index b180934..f43eaa5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1358,7 +1358,7 @@ dependencies = [
[[package]]
name = "serde_dhall"
-version = "0.7.2"
+version = "0.7.3"
dependencies = [
"dhall",
"dhall_proc_macros",
diff --git a/README.md b/README.md
index bac1651..b5c38bf 100644
--- a/README.md
+++ b/README.md
@@ -46,7 +46,7 @@ Add this to your `Cargo.toml`:
```toml
[dependencies]
-serde_dhall = "0.7.2"
+serde_dhall = "0.7.3"
```
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 74905bf..e8b8cbb 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.2"
+version = "0.7.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 73d74be..e393b8a 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.2")]
+#![doc(html_root_url = "https://docs.rs/serde_dhall/0.7.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.