From 123ec01430f57f9010891523fa9c98e626c74829 Mon Sep 17 00:00:00 2001 From: zerosnacks Date: Thu, 7 Aug 2025 13:39:54 -0700 Subject: [PATCH 1/3] bump revm --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e7dc425..ad8001d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ futures = "0.3" parking_lot = "0.12" -revm = { version = "27.0.2", features = ["std", "serde"] } +revm = { version = "28.0.0", features = ["std", "serde"] } serde = "1.0" serde_json = "1.0" From 9ddb76d039b6a961892c48d3d30fca360699c126 Mon Sep 17 00:00:00 2001 From: zerosnacks Date: Thu, 7 Aug 2025 13:53:53 -0700 Subject: [PATCH 2/3] bump msrv to 1.86, minimum required for alloy --- .github/workflows/ci.yml | 10 +++++----- Cargo.toml | 2 +- clippy.toml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10d62c3..ebc526a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,11 +20,11 @@ jobs: strategy: fail-fast: false matrix: - rust: ["stable", "nightly", "1.85"] # MSRV + rust: ["stable", "nightly", "1.86"] # MSRV flags: ["--no-default-features", "", "--all-features"] exclude: # Some features have higher MSRV. - - rust: "1.85" # MSRV + - rust: "1.86" # MSRV flags: "--all-features" steps: - uses: actions/checkout@v3 @@ -43,13 +43,13 @@ jobs: cache-on-failure: true # Only run tests on latest stable and above - name: Install cargo-nextest - if: ${{ matrix.rust != '1.85' }} # MSRV + if: ${{ matrix.rust != '1.86' }} # MSRV uses: taiki-e/install-action@nextest - name: build - if: ${{ matrix.rust == '1.85' }} # MSRV + if: ${{ matrix.rust == '1.86' }} # MSRV run: cargo build --workspace ${{ matrix.flags }} - name: test - if: ${{ matrix.rust != '1.85' }} # MSRV + if: ${{ matrix.rust != '1.86' }} # MSRV run: cargo nextest run --workspace ${{ matrix.flags }} doctest: diff --git a/Cargo.toml b/Cargo.toml index ad8001d..1d505b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ description = "Fork database used by Foundry" version = "0.16.0" edition = "2021" # Remember to update clippy.toml as well -rust-version = "1.85" +rust-version = "1.86" authors = ["Foundry Contributors"] license = "MIT OR Apache-2.0" homepage = "https://github.com/foundry-rs/foundry-fork-db" diff --git a/clippy.toml b/clippy.toml index b339f7c..80fcb9d 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1 +1 @@ -msrv = "1.85" +msrv = "1.86" From bae73407a6a220c890b747e6def862863ecee642 Mon Sep 17 00:00:00 2001 From: zerosnacks Date: Thu, 7 Aug 2025 13:56:54 -0700 Subject: [PATCH 3/3] bump to msrv 1.88 for revm --- .github/workflows/ci.yml | 10 +++++----- Cargo.toml | 2 +- clippy.toml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ebc526a..6a69475 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,11 +20,11 @@ jobs: strategy: fail-fast: false matrix: - rust: ["stable", "nightly", "1.86"] # MSRV + rust: ["stable", "nightly", "1.88"] # MSRV flags: ["--no-default-features", "", "--all-features"] exclude: # Some features have higher MSRV. - - rust: "1.86" # MSRV + - rust: "1.88" # MSRV flags: "--all-features" steps: - uses: actions/checkout@v3 @@ -43,13 +43,13 @@ jobs: cache-on-failure: true # Only run tests on latest stable and above - name: Install cargo-nextest - if: ${{ matrix.rust != '1.86' }} # MSRV + if: ${{ matrix.rust != '1.88' }} # MSRV uses: taiki-e/install-action@nextest - name: build - if: ${{ matrix.rust == '1.86' }} # MSRV + if: ${{ matrix.rust == '1.88' }} # MSRV run: cargo build --workspace ${{ matrix.flags }} - name: test - if: ${{ matrix.rust != '1.86' }} # MSRV + if: ${{ matrix.rust != '1.88' }} # MSRV run: cargo nextest run --workspace ${{ matrix.flags }} doctest: diff --git a/Cargo.toml b/Cargo.toml index 1d505b0..945e7ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ description = "Fork database used by Foundry" version = "0.16.0" edition = "2021" # Remember to update clippy.toml as well -rust-version = "1.86" +rust-version = "1.88" authors = ["Foundry Contributors"] license = "MIT OR Apache-2.0" homepage = "https://github.com/foundry-rs/foundry-fork-db" diff --git a/clippy.toml b/clippy.toml index 80fcb9d..f3322b5 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1 +1 @@ -msrv = "1.86" +msrv = "1.88"