summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNadrieril2020-10-28 23:43:43 +0000
committerNadrieril2020-10-28 23:43:43 +0000
commitb5094f23d22a0dd1a6a11c62ce1ed2dd57870789 (patch)
treeee5853cce09f08e4e3fe92ce42c13b59d3c53867
parent8fccb5595ad365afa7a02767b3b672b5c13311f1 (diff)
release: serde_dhall version 0.8.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 0fe7814..855c07b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
#### [Unreleased]
+#### [0.8.0] - 2020-10-28
+
- Implement serialization (https://github.com/Nadrieril/dhall-rust/issues/164)
- BREAKING CHANGE: use u64/i64 instead of usize/isize in `NumKind`
@@ -97,7 +99,8 @@
- Initial release
<!-- next-url -->
-[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.7.5...HEAD
+[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.8.0...HEAD
+[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
[0.7.3]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.7.2...serde_dhall-v0.7.3
diff --git a/Cargo.lock b/Cargo.lock
index f9c2524..6cb0d4d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1358,7 +1358,7 @@ dependencies = [
[[package]]
name = "serde_dhall"
-version = "0.7.5"
+version = "0.8.0"
dependencies = [
"dhall",
"dhall_proc_macros",
diff --git a/README.md b/README.md
index dea7eec..f9ee82d 100644
--- a/README.md
+++ b/README.md
@@ -46,7 +46,7 @@ Add this to your `Cargo.toml`:
```toml
[dependencies]
-serde_dhall = "0.7.5"
+serde_dhall = "0.8.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 ee3e9c3..dae8fc0 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.5"
+version = "0.8.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 387278b..9f8539f 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.5")]
+#![doc(html_root_url = "https://docs.rs/serde_dhall/0.8.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.