From 60ba4fb8b52237db371b6b4218f59706904810e3 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Fri, 6 May 2022 18:48:36 -0700 Subject: [PATCH] Release 1.0.6 --- Cargo.toml | 4 ++-- unindent/Cargo.toml | 2 +- unindent/src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 751d9bb..7e79bd8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indoc" -version = "1.0.5" +version = "1.0.6" authors = ["David Tolnay "] license = "MIT OR Apache-2.0" description = "Indented document literals" @@ -17,7 +17,7 @@ proc-macro = true [dev-dependencies] rustversion = "1.0" trybuild = { version = "1.0.49", features = ["diff"] } -unindent = { version = "0.1.8", path = "unindent" } +unindent = { version = "0.1.9", path = "unindent" } [workspace] members = ["unindent"] diff --git a/unindent/Cargo.toml b/unindent/Cargo.toml index ba5f80d..b9434d8 100644 --- a/unindent/Cargo.toml +++ b/unindent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unindent" -version = "0.1.8" # remember to update html_root_url +version = "0.1.9" # remember to update html_root_url authors = ["David Tolnay "] license = "MIT OR Apache-2.0" description = "Remove a column of leading whitespace from a string" diff --git a/unindent/src/lib.rs b/unindent/src/lib.rs index 02a42ba..dc8d99b 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.8")] +#![doc(html_root_url = "https://docs.rs/unindent/0.1.9")] #![allow( clippy::missing_panics_doc, clippy::module_name_repetitions,