From 4bfa29fcde487bd57c61db452773fff50f20c819 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Fri, 22 Mar 2024 22:04:10 -0700 Subject: [PATCH] Release 2.0.5 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3057482..f07d276 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indoc" -version = "2.0.4" +version = "2.0.5" 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 423a4f3..2d5f414 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.4")] +#![doc(html_root_url = "https://docs.rs/indoc/2.0.5")] #![allow( clippy::derive_partial_eq_without_eq, clippy::from_iter_instead_of_collect,