Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Aug 13, 2019
1 parent ab7241b commit 97d4571
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <dtolnay@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "Quasi-quoting macro quote!(...)"
Expand All @@ -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"
Expand All @@ -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" }
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
//!
//! ```toml
//! [dependencies]
//! quote-next = "1.0.0-rc3"
//! quote = "1.0"
//! ```
//!
//! <br>
Expand Down Expand Up @@ -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")),
Expand Down

0 comments on commit 97d4571

Please sign in to comment.