File tree Expand file tree Collapse file tree 4 files changed +8
-10
lines changed Expand file tree Collapse file tree 4 files changed +8
-10
lines changed Original file line number Diff line number Diff 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
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
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ resolver = "2"
55[workspace .package ]
66authors = [" Foundry Maintainers" ]
77version = " 0.12.3"
8- rust-version = " 1.70 "
8+ rust-version = " 1.81 "
99readme = " README.md"
1010license = " MIT OR Apache-2.0"
1111repository = " https://github.com/foundry-rs/compilers"
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ When updating this, also update:
2626
2727Foundry Compilers will keep a rolling MSRV (minimum supported rust version) policy of ** at
2828least** 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
3131Note that the MSRV is not increased automatically, and only as part of a minor
3232release.
Original file line number Diff line number Diff line change 1- msrv = " 1.70 "
1+ msrv = " 1.81 "
You can’t perform that action at this time.
0 commit comments