Skip to content

Commit f9cb4fa

Browse files
committed
fix: MSRV is 1.81
1 parent 9589a49 commit f9cb4fa

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,17 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
24-
rust: ["stable", "1.70"]
24+
rust: ["stable", "1.81"]
2525
flags: ["", "--all-features"]
2626
exclude:
2727
# Skip because some features have higher MSRV.
28-
- rust: "1.70" # MSRV
28+
- rust: "1.81" # MSRV
2929
flags: "--all-features"
3030
steps:
3131
- uses: actions/checkout@v4
32-
- uses: dtolnay/rust-toolchain@stable
32+
- uses: dtolnay/rust-toolchain@master
33+
with:
34+
toolchain: ${{ matrix.rust }}
3335
- name: Install test binaries
3436
shell: bash
3537
run: ./.github/scripts/install_test_binaries.sh
@@ -38,11 +40,7 @@ jobs:
3840
- uses: Swatinem/rust-cache@v2
3941
with:
4042
cache-on-failure: true
41-
- name: build
42-
if: matrix.rust == '1.70' # MSRV
43-
run: cargo build --workspace ${{ matrix.flags }}
4443
- name: test
45-
if: matrix.rust != '1.70' # MSRV
4644
shell: bash
4745
run: cargo nextest run ${{ matrix.flags }} --retries 2
4846

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ resolver = "2"
55
[workspace.package]
66
authors = ["Foundry Maintainers"]
77
version = "0.12.3"
8-
rust-version = "1.70"
8+
rust-version = "1.81"
99
readme = "README.md"
1010
license = "MIT OR Apache-2.0"
1111
repository = "https://github.com/foundry-rs/compilers"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ When updating this, also update:
2626

2727
Foundry Compilers will keep a rolling MSRV (minimum supported rust version) policy of **at
2828
least** 6 months. When increasing the MSRV, the new Rust version must have been
29-
released at least six months ago. The current MSRV is 1.70.0.
29+
released at least six months ago. The current MSRV is 1.81.0.
3030

3131
Note that the MSRV is not increased automatically, and only as part of a minor
3232
release.

clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
msrv = "1.70"
1+
msrv = "1.81"

0 commit comments

Comments
 (0)