summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNadrieril2020-02-21 14:14:18 +0000
committerNadrieril2020-02-21 14:14:18 +0000
commit42862723e6a34a4808fe6a8540a34eb7542e9ee4 (patch)
tree5739c8a2b7aad6c4a2f4bc6709cf3ee5810510b5
parentc09a2e3beb67aff520fd1d94f8d5069c1b7dfbf1 (diff)
Cut release
Diffstat (limited to '')
-rw-r--r--README.md4
-rw-r--r--dhall/Cargo.toml2
-rw-r--r--dhall/src/lib.rs2
-rw-r--r--serde_dhall/Cargo.toml4
-rw-r--r--serde_dhall/src/lib.rs2
5 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index 2f90743..863beef 100644
--- a/README.md
+++ b/README.md
@@ -39,7 +39,7 @@ Add this to your `Cargo.toml`:
```toml
[dependencies]
-serde_dhall = "0.2.1"
+serde_dhall = "0.3.0"
```
Reading Dhall files is easy and leverages the wonderful [`serde`](https://crates.io/crates/serde) library.
@@ -159,7 +159,7 @@ same name as the corresponding test.
## Changelog
-[???]
+[0.3.0]
- Update to supporting dhall v14.0.0
- Add support for dotted field syntax
diff --git a/dhall/Cargo.toml b/dhall/Cargo.toml
index 3281e4a..4d9595a 100644
--- a/dhall/Cargo.toml
+++ b/dhall/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "dhall"
-version = "0.2.1" # remember to update html_root_url
+version = "0.3.0" # remember to update html_root_url
authors = ["NanoTech <nanotech@nanotechcorp.net>", "Nadrieril <nadrieril@users.noreply.github.com>"]
license = "BSD-2-Clause"
description = "Implementation of the Dhall configuration language"
diff --git a/dhall/src/lib.rs b/dhall/src/lib.rs
index 9922144..34d7bc3 100644
--- a/dhall/src/lib.rs
+++ b/dhall/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/dhall/0.2.1")]
+#![doc(html_root_url = "https://docs.rs/dhall/0.3.0")]
#![feature(never_type)]
#![allow(
clippy::type_complexity,
diff --git a/serde_dhall/Cargo.toml b/serde_dhall/Cargo.toml
index 3a8c86b..7066dce 100644
--- a/serde_dhall/Cargo.toml
+++ b/serde_dhall/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "serde_dhall"
-version = "0.2.1" # remember to update html_root_url, README and changelog
+version = "0.3.0" # remember to update html_root_url, README and changelog
authors = ["Nadrieril <nadrieril@users.noreply.github.com>"]
license = "BSD-2-Clause"
description = "Dhall support for serde"
@@ -11,5 +11,5 @@ edition = "2018"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
-dhall = { version = "0.2.1", path = "../dhall" }
+dhall = { version = "0.3.0", path = "../dhall" }
dhall_proc_macros = { version = "0.1.0", path = "../dhall_proc_macros" }
diff --git a/serde_dhall/src/lib.rs b/serde_dhall/src/lib.rs
index 7bf6d30..73b36cd 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.2.1")]
+#![doc(html_root_url = "https://docs.rs/serde_dhall/0.3.0")]
//! [Dhall][dhall] is a programmable configuration language that provides a non-repetitive
//! alternative to JSON and YAML.
//!