Release 1.0.0
diff --git a/Cargo.toml b/Cargo.toml
index acf2655..5679f9c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
-name = "proc-macro2-next"
-version = "1.0.0-rc4" # remember to update html_root_url
+name = "proc-macro2"
+version = "1.0.0" # remember to update html_root_url
 authors = ["Alex Crichton <alex@alexcrichton.com>"]
 license = "MIT OR Apache-2.0"
 readme = "README.md"
@@ -26,7 +26,7 @@
 unicode-xid = "0.2"
 
 [dev-dependencies]
-quote-next = "1.0.0-rc1"
+quote = "1.0.0"
 
 [features]
 proc-macro = []
@@ -59,4 +59,4 @@
 # the second-most-recent version number, pulling in quote which resolves to a
 # 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 = "." }
+proc-macro2 = { path = "." }
diff --git a/src/lib.rs b/src/lib.rs
index b10eef1..aa4c631 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -77,7 +77,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-next/1.0.0-rc4")]
+#![doc(html_root_url = "https://docs.rs/proc-macro2/1.0.0")]
 #![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))]