diff --git a/Cargo.toml b/Cargo.toml index 5a7f60f..1015365 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indoc" -version = "1.0.6" +version = "1.0.7" authors = ["David Tolnay "] categories = ["rust-patterns", "text-processing", "no-std"] description = "Indented document literals" diff --git a/unindent/Cargo.toml b/unindent/Cargo.toml index 625bc61..0c68bc3 100644 --- a/unindent/Cargo.toml +++ b/unindent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unindent" -version = "0.1.9" # remember to update html_root_url +version = "0.1.10" # remember to update html_root_url authors = ["David Tolnay "] categories = ["text-processing"] description = "Remove a column of leading whitespace from a string" diff --git a/unindent/src/lib.rs b/unindent/src/lib.rs index 43f9649..5aa1a1c 100644 --- a/unindent/src/lib.rs +++ b/unindent/src/lib.rs @@ -45,7 +45,7 @@ //! } //! ``` -#![doc(html_root_url = "https://docs.rs/unindent/0.1.9")] +#![doc(html_root_url = "https://docs.rs/unindent/0.1.10")] #![allow( clippy::missing_panics_doc, clippy::module_name_repetitions,