From 44038ca42c212a5e10d22d8efa3d218d0dd2a743 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Thu, 8 Nov 2018 13:23:11 -0800 Subject: [PATCH] Release 0.6.10 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 235113b..5b14bb3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quote" -version = "0.6.9" # don't forget to update html_root_url, version in readme for breaking changes +version = "0.6.10" # don't forget to update html_root_url, version in readme for breaking changes authors = ["David Tolnay "] license = "MIT/Apache-2.0" description = "Quasi-quoting macro quote!(...)" diff --git a/src/lib.rs b/src/lib.rs index 7fd64b7..8f0203b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -92,7 +92,7 @@ //! An even higher limit may be necessary for especially large invocations. // Quote types in rustdoc of other crates get linked to here. -#![doc(html_root_url = "https://docs.rs/quote/0.6.9")] +#![doc(html_root_url = "https://docs.rs/quote/0.6.10")] #[cfg(all( not(all(target_arch = "wasm32", target_os = "unknown")),