diff options
author | Nadrieril | 2020-04-09 21:48:26 +0100 |
---|---|---|
committer | Nadrieril | 2020-04-09 21:48:26 +0100 |
commit | 0d20b0070079b86372c98e8c3f01132253ae4196 (patch) | |
tree | 678dfeee4ff648e52514b0aa75574aae0adff0ec | |
parent | 6f9a19a871a303562210e5e9817075742193779e (diff) |
Release dhall version 0.5.1
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | dhall/Cargo.toml | 2 | ||||
-rw-r--r-- | dhall/src/lib.rs | 2 | ||||
-rw-r--r-- | serde_dhall/Cargo.toml | 2 |
4 files changed, 5 insertions, 5 deletions
@@ -136,7 +136,7 @@ dependencies = [ [[package]] name = "dhall" -version = "0.5.0" +version = "0.5.1" dependencies = [ "abnf_to_pest 0.5.0", "annotate-snippets 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1040,7 +1040,7 @@ dependencies = [ name = "serde_dhall" version = "0.5.0" dependencies = [ - "dhall 0.5.0", + "dhall 0.5.1", "dhall_proc_macros 0.5.0", "doc-comment 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "reqwest 0.10.4 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/dhall/Cargo.toml b/dhall/Cargo.toml index b1f1f5b..cdde55f 100644 --- a/dhall/Cargo.toml +++ b/dhall/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "dhall" # remember to update html_root_url -version = "0.5.0" +version = "0.5.1" 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 61327cb..f2b6a98 100644 --- a/dhall/src/lib.rs +++ b/dhall/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/dhall/0.5.0")] +#![doc(html_root_url = "https://docs.rs/dhall/0.5.1")] #![allow( clippy::implicit_hasher, clippy::module_inception, diff --git a/serde_dhall/Cargo.toml b/serde_dhall/Cargo.toml index d6e8d9f..46aff74 100644 --- a/serde_dhall/Cargo.toml +++ b/serde_dhall/Cargo.toml @@ -12,7 +12,7 @@ edition = "2018" [dependencies] serde = { version = "1.0", features = ["derive"] } -dhall = { version = "= 0.5.0", path = "../dhall" } +dhall = { version = "= 0.5.1", path = "../dhall" } dhall_proc_macros = { version = "= 0.5.0", path = "../dhall_proc_macros" } doc-comment = "0.3" reqwest = { version = "0.10", features = ["blocking"] } |