From 727436c6c137b20f0f34dde5d8fda2679b9747ad Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 17 Aug 2019 19:53:55 -0700 Subject: [PATCH] Release 1.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 8817e0c..c052022 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quote" -version = "1.0.1" # don't forget to update html_root_url, version in readme for breaking changes +version = "1.0.2" # don't forget to update html_root_url, version in readme for breaking changes authors = ["David Tolnay "] license = "MIT OR Apache-2.0" description = "Quasi-quoting macro quote!(...)" diff --git a/src/lib.rs b/src/lib.rs index 7b8d646..3341a16 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -73,7 +73,7 @@ //! ``` // Quote types in rustdoc of other crates get linked to here. -#![doc(html_root_url = "https://docs.rs/quote/1.0.1")] +#![doc(html_root_url = "https://docs.rs/quote/1.0.2")] #[cfg(all( not(all(target_arch = "wasm32", target_os = "unknown")),