aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2019-08-10 20:35:59 -0700
committerDavid Tolnay <dtolnay@gmail.com>2019-08-10 20:35:59 -0700
commitab7241b6d31a299d054d570e71acbfbd550501fc (patch)
treeaad4f06294587b9687d6bc695bb5c2d1aca409bc
parent1d757d4bda76933aaf64005b00bd0e43108c5cee (diff)
downloadplatform_external_rust_crates_quote-ab7241b6d31a299d054d570e71acbfbd550501fc.tar.gz
platform_external_rust_crates_quote-ab7241b6d31a299d054d570e71acbfbd550501fc.tar.bz2
platform_external_rust_crates_quote-ab7241b6d31a299d054d570e71acbfbd550501fc.zip
Release 1.0.0-rc3
-rw-r--r--Cargo.toml2
-rw-r--r--src/lib.rs4
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index b1c3039..244e7ce 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "quote-next"
-version = "1.0.0-rc2" # don't forget to update html_root_url, version in readme for breaking changes
+version = "1.0.0-rc3" # 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!(...)"
diff --git a/src/lib.rs b/src/lib.rs
index 91a8343..085833d 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -23,7 +23,7 @@
//!
//! ```toml
//! [dependencies]
-//! quote-next = "1.0.0-rc2"
+//! quote-next = "1.0.0-rc3"
//! ```
//!
//! <br>
@@ -73,7 +73,7 @@
//! ```
// Quote types in rustdoc of other crates get linked to here.
-#![doc(html_root_url = "https://docs.rs/quote-next/1.0.0-rc2")]
+#![doc(html_root_url = "https://docs.rs/quote-next/1.0.0-rc3")]
#[cfg(all(
not(all(target_arch = "wasm32", target_os = "unknown")),