From 83557795cc6f7a85243e65d1bd4a6d20dd06a079 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 18 Sep 2017 23:17:47 -0700 Subject: [PATCH] Release 0.2.1 --- Cargo.toml | 2 +- impl/Cargo.toml | 2 +- impl/src/lib.rs | 2 +- src/lib.rs | 2 +- unindent/Cargo.toml | 2 +- unindent/src/lib.rs | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index efee918..f875b56 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indoc" -version = "0.2.0" # remember to update html_root_url +version = "0.2.1" # remember to update html_root_url authors = ["David Tolnay "] license = "MIT/Apache-2.0" description = "Indented document literals" diff --git a/impl/Cargo.toml b/impl/Cargo.toml index 17069f1..fc936ec 100644 --- a/impl/Cargo.toml +++ b/impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indoc-impl" -version = "0.2.0" # remember to update html_root_url +version = "0.2.1" # remember to update html_root_url authors = ["David Tolnay "] license = "MIT/Apache-2.0" description = "Indented document literals" diff --git a/impl/src/lib.rs b/impl/src/lib.rs index 4927dce..e6a92fc 100644 --- a/impl/src/lib.rs +++ b/impl/src/lib.rs @@ -6,7 +6,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -#![doc(html_root_url = "https://docs.rs/indoc-impl/0.2.0")] +#![doc(html_root_url = "https://docs.rs/indoc-impl/0.2.1")] #![cfg_attr(feature = "unstable", feature(proc_macro))] diff --git a/src/lib.rs b/src/lib.rs index fa0e344..436dd62 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -102,7 +102,7 @@ //! ") / ") / //! ``` -#![doc(html_root_url = "https://docs.rs/indoc/0.2.0")] +#![doc(html_root_url = "https://docs.rs/indoc/0.2.1")] #![cfg_attr(feature = "unstable", feature(decl_macro, proc_macro, use_extern_macros))] diff --git a/unindent/Cargo.toml b/unindent/Cargo.toml index 50c0c4f..3b88775 100644 --- a/unindent/Cargo.toml +++ b/unindent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unindent" -version = "0.1.1" # remember to update html_root_url +version = "0.1.2" # remember to update html_root_url authors = ["David Tolnay "] license = "MIT/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 45c7001..5e32ee3 100644 --- a/unindent/src/lib.rs +++ b/unindent/src/lib.rs @@ -31,7 +31,7 @@ //! } //! ``` -#![doc(html_root_url = "https://docs.rs/unindent/0.1.1")] +#![doc(html_root_url = "https://docs.rs/unindent/0.1.2")] #![cfg_attr(feature = "cargo-clippy", allow(type_complexity))]