diff --git a/Cargo.toml b/Cargo.toml index 605a191..4b4a185 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quote" -version = "1.0.7" # don't forget to update html_root_url, version in readme for breaking changes +version = "1.0.8" # 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 1308c67..fb09b5d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -82,7 +82,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.7")] +#![doc(html_root_url = "https://docs.rs/quote/1.0.8")] #[cfg(all( not(all(target_arch = "wasm32", target_os = "unknown")),