From a92f59e37e0fda9c5a8dc11899a8d286de6b9b79 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 15 Jul 2023 13:40:44 -0700 Subject: [PATCH] Release 2.0.3 --- Cargo.toml | 2 +- src/lib.rs | 2 +- unindent/Cargo.toml | 2 +- unindent/src/lib.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b8a1f60..5ca200f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indoc" -version = "2.0.2" +version = "2.0.3" authors = ["David Tolnay "] categories = ["rust-patterns", "text-processing", "no-std", "no-std::no-alloc"] description = "Indented document literals" diff --git a/src/lib.rs b/src/lib.rs index 2285882..3fe3962 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -121,7 +121,7 @@ //! the first line. //! 4. Remove the computed number of spaces from the beginning of each line. -#![doc(html_root_url = "https://docs.rs/indoc/2.0.2")] +#![doc(html_root_url = "https://docs.rs/indoc/2.0.3")] #![allow( clippy::derive_partial_eq_without_eq, clippy::from_iter_instead_of_collect, diff --git a/unindent/Cargo.toml b/unindent/Cargo.toml index f30d157..2fbfbfe 100644 --- a/unindent/Cargo.toml +++ b/unindent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unindent" -version = "0.2.1" # remember to update html_root_url +version = "0.2.2" # 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 d82160a..cbf7e02 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.1")] +#![doc(html_root_url = "https://docs.rs/unindent/0.2.2")] #![allow( clippy::missing_panics_doc, clippy::module_name_repetitions,