summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNadrieril2020-10-16 02:33:32 +0100
committerNadrieril2020-10-16 02:34:01 +0100
commit7a6a33443a961ed7c3c1f71ef89bb513aca71773 (patch)
tree042f392cdf03074caff1360dcfb757f28128650a
parentdc0ac6bed33b382e4211992328c5ed0f358c5314 (diff)
Release serde_dhall version 0.7.1
-rw-r--r--CHANGELOG.md6
-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, 9 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f976b59..2408a6d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,7 +2,10 @@
#### [Unreleased]
+#### [0.7.1] - 2020-10-16
+
- Add a `Display` impl for `SimpleType` (https://github.com/Nadrieril/dhall-rust/issues/179)
+- Make reqwest an optional dependency (https://github.com/Nadrieril/dhall-rust/issues/178)
#### [0.7.0] - 2020-09-15
@@ -75,7 +78,8 @@
- Initial release
<!-- next-url -->
-[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.7.0...HEAD
+[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.7.1...HEAD
+[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
[0.5.3]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.5.2...serde_dhall-v0.5.3
diff --git a/Cargo.lock b/Cargo.lock
index d9a31b6..2071fd8 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1358,7 +1358,7 @@ dependencies = [
[[package]]
name = "serde_dhall"
-version = "0.7.0"
+version = "0.7.1"
dependencies = [
"dhall",
"dhall_proc_macros",
diff --git a/README.md b/README.md
index 35efa5f..7aa4516 100644
--- a/README.md
+++ b/README.md
@@ -46,7 +46,7 @@ Add this to your `Cargo.toml`:
```toml
[dependencies]
-serde_dhall = "0.7.0"
+serde_dhall = "0.7.1"
```
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 7ffc390..8882424 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.0"
+version = "0.7.1"
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 534909b..80cef01 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.0")]
+#![doc(html_root_url = "https://docs.rs/serde_dhall/0.7.1")]
#![warn(missing_docs, missing_doc_code_examples)]
//! [Dhall][dhall] is a programmable configuration language that provides a non-repetitive
//! alternative to JSON and YAML.