From 687e62e8157e43296768cc227ab19b17683dd23f Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 3 Jul 2023 14:24:42 -0700 Subject: [PATCH] Release 2.0.2 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ab53d8b..f83c8b4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indoc" -version = "2.0.1" +version = "2.0.2" 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 7de1f99..2285882 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.1")] +#![doc(html_root_url = "https://docs.rs/indoc/2.0.2")] #![allow( clippy::derive_partial_eq_without_eq, clippy::from_iter_instead_of_collect,