diff --git a/unindent/Cargo.toml b/unindent/Cargo.toml index 661b47b..4348265 100644 --- a/unindent/Cargo.toml +++ b/unindent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unindent" -version = "0.2.0" # remember to update html_root_url +version = "0.2.1" # 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 b828d51..d82160a 100644 --- a/unindent/src/lib.rs +++ b/unindent/src/lib.rs @@ -45,7 +45,7 @@ //! } //! ``` -#![doc(html_root_url = "https://docs.rs/unindent/0.2.0")] +#![doc(html_root_url = "https://docs.rs/unindent/0.2.1")] #![allow( clippy::missing_panics_doc, clippy::module_name_repetitions,