From 97d457120732acd576856ce68cc1592870b63f23 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 13 Aug 2019 09:03:03 -0700 Subject: [PATCH] Release 1.0.0 --- Cargo.toml | 8 ++++---- src/lib.rs | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 244e7ce..4c187de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] -name = "quote-next" -version = "1.0.0-rc3" # don't forget to update html_root_url, version in readme for breaking changes +name = "quote" +version = "1.0.0" # don't forget to update html_root_url, version in readme for breaking changes authors = ["David Tolnay "] license = "MIT OR Apache-2.0" description = "Quasi-quoting macro quote!(...)" @@ -16,7 +16,7 @@ edition = "2018" name = "quote" [dependencies] -proc-macro2-next = { version = "1.0.0-rc2", default-features = false } +proc-macro2 = { version = "1.0", default-features = false } [dev-dependencies] rustversion = "0.1" @@ -26,7 +26,7 @@ trybuild = "1.0" default = ["proc-macro"] # Disabling the proc-macro feature removes the dynamic library dependency on # libproc_macro in the rustc compiler. -proc-macro = ["proc-macro2-next/proc-macro"] +proc-macro = ["proc-macro2/proc-macro"] [badges] travis-ci = { repository = "dtolnay/quote" } diff --git a/src/lib.rs b/src/lib.rs index 085833d..fd6169c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -23,7 +23,7 @@ //! //! ```toml //! [dependencies] -//! quote-next = "1.0.0-rc3" +//! quote = "1.0" //! ``` //! //!
@@ -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-rc3")] +#![doc(html_root_url = "https://docs.rs/quote/1.0.0")] #[cfg(all( not(all(target_arch = "wasm32", target_os = "unknown")),