summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNadrieril2020-11-20 22:55:04 +0000
committerNadrieril2020-11-20 22:55:04 +0000
commit8be3891b1e30f61b1f38b96e1ed200f367066032 (patch)
tree61aa3f6cc6fffd74cb46d725d32adc3e36222384
parent79c970a9165d6dc58386c0b641bdb11516d9775b (diff)
release: serde_dhall version 0.9.0
-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 b02936a..d1d3064 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
#### [Unreleased]
+#### [0.9.0] - 2020-11-20
+
- BREAKING CHANGE: Support Dhall v19.0.0
- Support reading a CBOR-encoded binary file (https://github.com/Nadrieril/dhall-rust/issues/199)
@@ -102,7 +104,8 @@
- Initial release
<!-- next-url -->
-[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.8.0...HEAD
+[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.9.0...HEAD
+[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
[0.7.4]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.7.3...serde_dhall-v0.7.4
diff --git a/Cargo.lock b/Cargo.lock
index 9d72f79..fdbb3ed 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1379,7 +1379,7 @@ dependencies = [
[[package]]
name = "serde_dhall"
-version = "0.8.0"
+version = "0.9.0"
dependencies = [
"dhall",
"dhall_proc_macros",
diff --git a/README.md b/README.md
index 61f9b68..b1a452f 100644
--- a/README.md
+++ b/README.md
@@ -49,7 +49,7 @@ Add this to your `Cargo.toml`:
```toml
[dependencies]
-serde_dhall = "0.8.0"
+serde_dhall = "0.9.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 70de44c..4ef82f8 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.8.0"
+version = "0.9.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 2af445c..01d036b 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.8.0")]
+#![doc(html_root_url = "https://docs.rs/serde_dhall/0.9.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.