Skip to content

Commit 239fbb6

Browse files
committed
Raise required compiler to Rust 1.60
1 parent 006b485 commit 239fbb6

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,14 +101,14 @@ jobs:
101101
- run: cargo test --test test_size --no-default-features --features span-locations
102102

103103
msrv:
104-
name: Rust 1.56.0
104+
name: Rust 1.60.0
105105
needs: pre_ci
106106
if: needs.pre_ci.outputs.continue
107107
runs-on: ubuntu-latest
108108
timeout-minutes: 45
109109
steps:
110110
- uses: actions/checkout@v5
111-
- uses: dtolnay/rust-toolchain@1.56.0
111+
- uses: dtolnay/rust-toolchain@1.60.0
112112
with:
113113
components: rust-src
114114
- run: cargo check

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ edition = "2021"
1010
keywords = ["macros", "syn"]
1111
license = "MIT OR Apache-2.0"
1212
repository = "https://github.com/dtolnay/proc-macro2"
13-
rust-version = "1.56"
13+
rust-version = "1.60"
1414

1515
[package.metadata.docs.rs]
1616
rustc-args = ["--cfg=procmacro2_semver_exempt"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ proc-macro2 by default.
6262

6363
To opt into the additional APIs available in the most recent nightly compiler,
6464
the `procmacro2_semver_exempt` config flag must be passed to rustc. We will
65-
polyfill those nightly-only APIs back to Rust 1.56.0. As these are unstable APIs
65+
polyfill those nightly-only APIs back to Rust 1.60.0. As these are unstable APIs
6666
that track the nightly compiler, minor versions of proc-macro2 may make breaking
6767
changes to them at any time.
6868

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
//!
6464
//! To opt into the additional APIs available in the most recent nightly
6565
//! compiler, the `procmacro2_semver_exempt` config flag must be passed to
66-
//! rustc. We will polyfill those nightly-only APIs back to Rust 1.56.0. As
66+
//! rustc. We will polyfill those nightly-only APIs back to Rust 1.60.0. As
6767
//! these are unstable APIs that track the nightly compiler, minor versions of
6868
//! proc-macro2 may make breaking changes to them at any time.
6969
//!

0 commit comments

Comments
 (0)