Skip to content

Commit 1c11e13

Browse files
ItsNoHaxsajattack
authored andcommitted
chore: require nightly-2026-08-26
Bump the documented, CI-pinned and `cargo-psp`-enforced minimum nightly to the version the `PanicPayload` and `libunwind` fixes were verified against, `rustc 1.100.0-nightly (787af2b8c 2026-08-25)`. The commit date lags the toolchain date by one day, as noted above the constant.
1 parent ef6c41f commit 1c11e13

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
runs-on: ${{ matrix.platform }}
1818
env:
19-
RUSTUP_TOOLCHAIN: nightly-2026-05-30
19+
RUSTUP_TOOLCHAIN: nightly-2026-08-26
2020
steps:
2121
- name: Checkout sources
2222
uses: actions/checkout@v7

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ implementations of graphics functions, and the addition of missing libraries.
5656
## Dependencies
5757

5858
To compile for the PSP, you will need a Rust **nightly** version equal to or
59-
later than `2026-05-30` and the `rust-src` component. Please install Rust using
59+
later than `2026-08-26` and the `rust-src` component. Please install Rust using
6060
https://rustup.rs/
6161

6262
Use the following if you are new to Rust. (Feel free to set an override manually

cargo-psp/src/main.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,17 +136,17 @@ impl core::ops::Add<CommitDate> for CommitDate {
136136
}
137137
}
138138

139-
// Minimum 2023-03-27, remember to update both commit date and version too,
139+
// Minimum 2026-08-26, remember to update both commit date and version too,
140140
// below. Note that the `day` field lags by one day, as the toolchain always
141141
// contains the previous days' nightly rustc.
142142
const MINIMUM_COMMIT_DATE: CommitDate = CommitDate {
143143
year: 2026,
144-
month: 05,
145-
day: 29,
144+
month: 08,
145+
day: 25,
146146
};
147147
const MINIMUM_RUSTC_VERSION: Version = Version {
148148
major: 1,
149-
minor: 96,
149+
minor: 100,
150150
patch: 0,
151151
pre: Prerelease::EMPTY,
152152
build: BuildMetadata::EMPTY,

0 commit comments

Comments
 (0)