From 01b0a845faa5b133436ae53041ef5aa90a993af2 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 12 Aug 2018 10:01:28 -0700 Subject: [PATCH] Release 0.6.6 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6e95da9..62ffd9a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quote" -version = "0.6.5" # don't forget to update html_root_url, version in readme for breaking changes +version = "0.6.6" # 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 2537828..fcbb7bb 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.5")] +#![doc(html_root_url = "https://docs.rs/quote/0.6.6")] #[cfg(all(not(all(target_arch = "wasm32", target_os = "unknown")), feature = "proc-macro"))] extern crate proc_macro;