From cc50e29dad9ed20ceb1c3a3e42ad914b1a1f9bda Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Thu, 30 Apr 2020 12:17:12 -0700 Subject: [PATCH] Release 1.0.4 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5949210..f40411a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quote" -version = "1.0.3" # don't forget to update html_root_url, version in readme for breaking changes +version = "1.0.4" # 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 ad12230..86d91eb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -75,7 +75,7 @@ #![forbid(unsafe_code)] // Quote types in rustdoc of other crates get linked to here. -#![doc(html_root_url = "https://docs.rs/quote/1.0.3")] +#![doc(html_root_url = "https://docs.rs/quote/1.0.4")] #[cfg(all( not(all(target_arch = "wasm32", target_os = "unknown")),