Release 1.0.0-rc1
diff --git a/Cargo.toml b/Cargo.toml
index 14d298a..08dad3e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "proc-macro2-next"
-version = "0.4.30" # remember to update html_root_url
+version = "1.0.0-rc1" # remember to update html_root_url
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
@@ -15,7 +15,6 @@
option, off by default, to also reimplement itself in terms of the upstream
unstable API.
"""
-publish = false # contains breaking changes
[lib]
name = "proc_macro2"
@@ -28,7 +27,7 @@
unicode-xid = "0.2"
[dev-dependencies]
-quote-next = "0.6"
+quote-next = "1.0.0-rc1"
[features]
proc-macro = []
@@ -62,5 +61,3 @@
# dependency on the just-published most recent version number. Thus the patch
# will fail to apply because the version numbers are different.
proc-macro2-next = { path = "." }
-
-quote-next = { git = "https://github.com/dtolnay/quote" }
diff --git a/src/lib.rs b/src/lib.rs
index 7fdb2cc..93e0523 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -85,7 +85,7 @@
//! a different thread.
// Proc-macro2 types in rustdoc of other crates get linked to here.
-#![doc(html_root_url = "https://docs.rs/proc-macro2/0.4.30")]
+#![doc(html_root_url = "https://docs.rs/proc-macro2-next/1.0.0-rc1")]
#![cfg_attr(any(proc_macro_span, super_unstable), feature(proc_macro_span))]
#![cfg_attr(super_unstable, feature(proc_macro_raw_ident, proc_macro_def_site))]