summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNadrieril2021-02-04 16:12:21 +0000
committerNadrieril2021-02-04 16:12:21 +0000
commit9138e0fae758d4beb2188d03fbafaa1893e497f5 (patch)
tree0224469b2cb6eb17012a7d92e2808eb4e76c6803
parent257b57c616de78c646f38d75e3487754499e9ba5 (diff)
release: serde_dhall version 0.10.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 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
<!-- next-url -->
-[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 <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 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.