summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNadrieril2020-08-05 18:41:57 +0100
committerNadrieril2020-08-05 18:41:57 +0100
commitbc389960b34af11d6180328e355eaadba1ddc07b (patch)
tree8e3c83a34a065642fc8f217167f3b2a25a6e85a7
parentcbe2b5983d2ee5ff210b1466742e73bab2c0c606 (diff)
Release serde_dhall version 0.6.0
Diffstat (limited to '')
-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 d9fa944..20c5e34 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
#### [Unreleased]
+#### [0.6.0] - 2020-08-05
+
- Allow trailing delimiters in records, lists, etc.
- BREAKING CHANGE: Support Dhall v17.0.0
@@ -67,7 +69,8 @@
- Initial release
<!-- next-url -->
-[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.5.3...HEAD
+[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.6.0...HEAD
+[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
[0.5.1]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.5.0...serde_dhall-v0.5.1
diff --git a/Cargo.lock b/Cargo.lock
index d8135df..c36678e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1218,7 +1218,7 @@ dependencies = [
[[package]]
name = "serde_dhall"
-version = "0.5.3"
+version = "0.6.0"
dependencies = [
"dhall 0.6.0",
"dhall_proc_macros 0.5.0",
diff --git a/README.md b/README.md
index 6bce4e5..634c7c1 100644
--- a/README.md
+++ b/README.md
@@ -46,7 +46,7 @@ Add this to your `Cargo.toml`:
```toml
[dependencies]
-serde_dhall = "0.5.3"
+serde_dhall = "0.6.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 de502ce..38d0d40 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.5.3"
+version = "0.6.0"
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 1243366..d8a093c 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.5.3")]
+#![doc(html_root_url = "https://docs.rs/serde_dhall/0.6.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.