diff options
Diffstat (limited to '')
-rw-r--r-- | dhall/Cargo.toml | 2 | ||||
-rw-r--r-- | dhall/src/lib.rs | 2 | ||||
-rw-r--r-- | dhall_proc_macros/Cargo.toml | 2 | ||||
-rw-r--r-- | dhall_proc_macros/src/lib.rs | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/dhall/Cargo.toml b/dhall/Cargo.toml index 0d1c569..bd91a1a 100644 --- a/dhall/Cargo.toml +++ b/dhall/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dhall" -version = "0.3.0" # remember to update html_root_url +version = "0.4.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 058411c..c0830d4 100644 --- a/dhall/src/lib.rs +++ b/dhall/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/dhall/0.3.0")] +#![doc(html_root_url = "https://docs.rs/dhall/0.4.0")] #![allow( clippy::int_plus_one, // Comes from pest_consume macro clippy::module_inception, diff --git a/dhall_proc_macros/Cargo.toml b/dhall_proc_macros/Cargo.toml index 6d8ac63..6de2850 100644 --- a/dhall_proc_macros/Cargo.toml +++ b/dhall_proc_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dhall_proc_macros" -version = "0.1.0" # remember to update html_root_url +version = "0.4.0" # remember to update html_root_url 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 ce2dcdb..ae6f64c 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.1.0")] +#![doc(html_root_url = "https://docs.rs/dhall_proc_macros/0.4.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. //! |