From be271b7b81c603f408fd6b116249c7421e06d690 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 5 Mar 2023 15:31:07 -0800 Subject: [PATCH] Release 2.0.1 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ed7f70c..9010c56 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indoc" -version = "2.0.0" +version = "2.0.1" authors = ["David Tolnay "] categories = ["rust-patterns", "text-processing", "no-std"] description = "Indented document literals" diff --git a/src/lib.rs b/src/lib.rs index 2307523..7de1f99 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.0")] +#![doc(html_root_url = "https://docs.rs/indoc/2.0.1")] #![allow( clippy::derive_partial_eq_without_eq, clippy::from_iter_instead_of_collect,