From 31daf63215ef18b670ebfa6b738d094f99276d25 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 17 Dec 2022 11:08:19 -0800 Subject: [PATCH] Release 1.0.8 --- Cargo.toml | 2 +- unindent/Cargo.toml | 2 +- unindent/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9eb1958..71380a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indoc" -version = "1.0.7" +version = "1.0.8" 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 5f280d3..1f18a1a 100644 --- a/unindent/Cargo.toml +++ b/unindent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unindent" -version = "0.1.10" # remember to update html_root_url +version = "0.1.11" # 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 5aa1a1c..cb5a4ef 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.10")] +#![doc(html_root_url = "https://docs.rs/unindent/0.1.11")] #![allow( clippy::missing_panics_doc, clippy::module_name_repetitions,