Skip to content

Commit

Permalink
chore: msrv
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse committed Dec 27, 2024
1 parent edc4e10 commit 8049f94
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: ["stable", "nightly", "1.81"] # MSRV
rust: ["stable", "nightly", "1.82"] # MSRV
flags: ["", "--all-features"]
steps:
- uses: actions/checkout@v3
Expand All @@ -28,10 +28,10 @@ jobs:
cache-on-failure: true
# Only run tests on latest stable and above
- name: build
if: ${{ matrix.rust == '1.81' }} # MSRV
if: ${{ matrix.rust == '1.82' }} # MSRV
run: cargo build --workspace ${{ matrix.flags }}
- name: test
if: ${{ matrix.rust != '1.81' }} # MSRV
if: ${{ matrix.rust != '1.82' }} # MSRV
run: cargo test --workspace ${{ matrix.flags }}

feature-checks:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "revm-inspectors"
description = "Revm inspector implementations"
version = "0.13.0"
edition = "2021"
rust-version = "1.81.0"
rust-version = "1.82.0"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/paradigmxyz/revm-inspectors"
repository = "https://github.com/paradigmxyz/revm-inspectors"
Expand Down
2 changes: 1 addition & 1 deletion clippy.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
msrv = "1.81"
msrv = "1.82"

0 comments on commit 8049f94

Please sign in to comment.