From 784e9b26f0b664c9de6bd273150ec4ddfa19154d Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 16 Sep 2023 12:26:40 -0600 Subject: [PATCH] Release 2.0.4 --- Cargo.toml | 4 ++-- src/lib.rs | 2 +- unindent/Cargo.toml | 2 +- unindent/src/lib.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5ca200f..3057482 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indoc" -version = "2.0.3" +version = "2.0.4" authors = ["David Tolnay "] categories = ["rust-patterns", "text-processing", "no-std", "no-std::no-alloc"] description = "Indented document literals" @@ -18,7 +18,7 @@ doc-scrape-examples = false [dev-dependencies] rustversion = "1.0" trybuild = { version = "1.0.49", features = ["diff"] } -unindent = { version = "0.2", path = "unindent" } +unindent = { version = "0.2.3", path = "unindent" } [workspace] members = ["unindent"] diff --git a/src/lib.rs b/src/lib.rs index 3fe3962..0001e7b 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.3")] +#![doc(html_root_url = "https://docs.rs/indoc/2.0.4")] #![allow( clippy::derive_partial_eq_without_eq, clippy::from_iter_instead_of_collect, diff --git a/unindent/Cargo.toml b/unindent/Cargo.toml index 2fbfbfe..09aee52 100644 --- a/unindent/Cargo.toml +++ b/unindent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unindent" -version = "0.2.2" # remember to update html_root_url +version = "0.2.3" # 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 83513ad..3303db5 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.2")] +#![doc(html_root_url = "https://docs.rs/unindent/0.2.3")] #![allow( clippy::missing_panics_doc, clippy::module_name_repetitions,