diff options
author | Nadrieril | 2020-04-05 19:56:00 +0100 |
---|---|---|
committer | GitHub | 2020-04-05 19:56:00 +0100 |
commit | 4290615769fc26c5e4b70843e7fbfddf6359af41 (patch) | |
tree | d7b7a860f08831aa81faee961c0d675440daea32 /dhall | |
parent | 7e977f282fb6a0eff0ef45738b9b5c98dc4c6fee (diff) | |
parent | 5a10cd2e8fac854f4f6fa152cfb1b9ad71b0d091 (diff) |
Merge pull request #157 from Nadrieril/release
Release v0.5.0
Diffstat (limited to '')
-rw-r--r-- | dhall/Cargo.toml | 5 | ||||
-rw-r--r-- | dhall/src/lib.rs | 2 | ||||
-rw-r--r-- | dhall_proc_macros/Cargo.toml | 3 | ||||
-rw-r--r-- | dhall_proc_macros/src/lib.rs | 2 |
4 files changed, 7 insertions, 5 deletions
diff --git a/dhall/Cargo.toml b/dhall/Cargo.toml index bb60d9e..75d38f1 100644 --- a/dhall/Cargo.toml +++ b/dhall/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "dhall" -version = "0.4.0" # remember to update html_root_url +# remember to update html_root_url +version = "0.5.0" authors = ["NanoTech <nanotech@nanotechcorp.net>", "Nadrieril <nadrieril@users.noreply.github.com>"] license = "BSD-2-Clause" description = "Implementation of the Dhall configuration language" @@ -30,7 +31,7 @@ version-sync = "0.8" [build-dependencies] walkdir = "2" -abnf_to_pest = { version = "0.2.0", path = "../abnf_to_pest" } +abnf_to_pest = { version = "^0.5.0", path = "../abnf_to_pest" } pest_generator = "2.1" quote = "1.0" diff --git a/dhall/src/lib.rs b/dhall/src/lib.rs index 392c344..98ad4f0 100644 --- a/dhall/src/lib.rs +++ b/dhall/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/dhall/0.4.0")] +#![doc(html_root_url = "https://docs.rs/dhall/0.5.0")] #![allow( clippy::implicit_hasher, clippy::module_inception, diff --git a/dhall_proc_macros/Cargo.toml b/dhall_proc_macros/Cargo.toml index 48b55e8..d770aa8 100644 --- a/dhall_proc_macros/Cargo.toml +++ b/dhall_proc_macros/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "dhall_proc_macros" -version = "0.4.0" # remember to update html_root_url +# remember to update html_root_url +version = "0.5.0" authors = ["Nadrieril <nadrieril@users.noreply.github.com>"] license = "BSD-2-Clause" description = "Macros for dhall" diff --git a/dhall_proc_macros/src/lib.rs b/dhall_proc_macros/src/lib.rs index 2178f00..9f20e2d 100644 --- a/dhall_proc_macros/src/lib.rs +++ b/dhall_proc_macros/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/dhall_proc_macros/0.4.0")] +#![doc(html_root_url = "https://docs.rs/dhall_proc_macros/0.5.0")] //! This crate contains the code-generation primitives for the [dhall-rust][dhall-rust] crate. //! This is highly unstable and breaks regularly; use at your own risk. //! |