From 7946ea340eb281d284dd8ffd192e813f66ba2281 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 20 May 2018 22:05:14 -0700 Subject: [PATCH] Release 0.6.1 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a927919..3743834 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quote" -version = "0.6.0" # don't forget to update html_root_url, version in readme for breaking changes +version = "0.6.1" # 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 e770a73..d09cfe2 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.0")] +#![doc(html_root_url = "https://docs.rs/quote/0.6.1")] #[cfg(feature = "proc-macro")] extern crate proc_macro;