diff options
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | dhall/Cargo.toml | 2 | ||||
-rw-r--r-- | dhall/src/lib.rs | 2 | ||||
-rw-r--r-- | serde_dhall/Cargo.toml | 4 | ||||
-rw-r--r-- | serde_dhall/src/lib.rs | 2 |
5 files changed, 7 insertions, 7 deletions
@@ -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. //! |