Skip to content

Commit 037d0c9

Browse files
committed
Release 1.0.0-rc3
1 parent 08d77d2 commit 037d0c9

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "syn-next"
3-
version = "1.0.0-rc2" # don't forget to update html_root_url and syn.json
3+
version = "1.0.0-rc3" # don't forget to update html_root_url and syn.json
44
authors = ["David Tolnay <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
description = "Parser for Rust source code"

src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
//!
5555
//! ```toml
5656
//! [dependencies]
57-
//! syn-next = "1.0.0-rc2"
57+
//! syn-next = "1.0.0-rc3"
5858
//! quote-next = "1.0.0-rc3"
5959
//!
6060
//! [lib]
@@ -242,7 +242,7 @@
242242
//! dynamic library libproc_macro from rustc toolchain.
243243
244244
// Syn types in rustdoc of other crates get linked to here.
245-
#![doc(html_root_url = "https://docs.rs/syn-next/1.0.0-rc2")]
245+
#![doc(html_root_url = "https://docs.rs/syn-next/1.0.0-rc3")]
246246
#![deny(clippy::all, clippy::pedantic)]
247247
// Ignored clippy lints.
248248
#![allow(
@@ -494,7 +494,7 @@ mod gen {
494494
/// ```
495495
/// // [dependencies]
496496
/// // quote-next = "1.0.0-rc3"
497-
/// // syn-next = { version = "1.0.0-rc2", features = ["full", "visit"] }
497+
/// // syn-next = { version = "1.0.0-rc3", features = ["full", "visit"] }
498498
///
499499
/// use quote::quote;
500500
/// use syn::visit::{self, Visit};
@@ -616,7 +616,7 @@ mod gen {
616616
/// ```
617617
/// // [dependencies]
618618
/// // quote-next = "1.0.0-rc3"
619-
/// // syn-next = { version = "1.0.0-rc2", features = ["full", "visit-mut"] }
619+
/// // syn-next = { version = "1.0.0-rc3", features = ["full", "visit-mut"] }
620620
///
621621
/// use quote::quote;
622622
/// use syn::visit_mut::{self, VisitMut};
@@ -713,7 +713,7 @@ mod gen {
713713
/// ```
714714
/// // [dependencies]
715715
/// // quote-next = "1.0.0-rc3"
716-
/// // syn-next = { version = "1.0.0-rc2", features = ["fold", "full"] }
716+
/// // syn-next = { version = "1.0.0-rc3", features = ["fold", "full"] }
717717
///
718718
/// use quote::quote;
719719
/// use syn::fold::{fold_expr, Fold};

syn.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-rc2",
2+
"version": "1.0.0-rc3",
33
"types": [
44
{
55
"ident": "Abi",

0 commit comments

Comments
 (0)