diff --git a/Cargo.toml b/Cargo.toml index efb1049..a0170da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indoc" -version = "0.2.6" # remember to update html_root_url +version = "0.2.7" # remember to update html_root_url authors = ["David Tolnay "] license = "MIT/Apache-2.0" description = "Indented document literals" diff --git a/impl/Cargo.toml b/impl/Cargo.toml index 4b2a893..d51b60b 100644 --- a/impl/Cargo.toml +++ b/impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indoc-impl" -version = "0.2.6" # remember to update html_root_url +version = "0.2.7" # remember to update html_root_url authors = ["David Tolnay "] license = "MIT/Apache-2.0" description = "Indented document literals" diff --git a/impl/src/lib.rs b/impl/src/lib.rs index 1f2d0c4..b3ca4f8 100644 --- a/impl/src/lib.rs +++ b/impl/src/lib.rs @@ -6,7 +6,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -#![doc(html_root_url = "https://docs.rs/indoc-impl/0.2.6")] +#![doc(html_root_url = "https://docs.rs/indoc-impl/0.2.7")] #[cfg(feature = "unstable")] extern crate proc_macro; diff --git a/src/lib.rs b/src/lib.rs index 7af49e0..cb340d0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -111,7 +111,7 @@ //! ") / ") / //! ``` -#![doc(html_root_url = "https://docs.rs/indoc/0.2.6")] +#![doc(html_root_url = "https://docs.rs/indoc/0.2.7")] #![cfg_attr(feature = "unstable", feature(decl_macro))] #![cfg_attr(feature = "cargo-clippy", allow(useless_attribute))] #![no_std]