Release 1.0.6

This commit is contained in:
David Tolnay 2020-05-17 13:13:51 -07:00
parent d5069f4b51
commit d67d687aeb
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "quote"
version = "1.0.5" # don't forget to update html_root_url, version in readme for breaking changes
version = "1.0.6" # don't forget to update html_root_url, version in readme for breaking changes
authors = ["David Tolnay <dtolnay@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "Quasi-quoting macro quote!(...)"

View File

@ -83,7 +83,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.5")]
#![doc(html_root_url = "https://docs.rs/quote/1.0.6")]
#[cfg(all(
not(all(target_arch = "wasm32", target_os = "unknown")),