diff --git a/Cargo.lock b/Cargo.lock index fcf01731f1e..f9d1d362c6c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2322,7 +2322,7 @@ dependencies = [ [[package]] name = "revm" -version = "4.0.0" +version = "4.0.1" dependencies = [ "anyhow", "auto_impl", diff --git a/bins/revm-test/Cargo.toml b/bins/revm-test/Cargo.toml index 9b18142a944..536534bdca8 100644 --- a/bins/revm-test/Cargo.toml +++ b/bins/revm-test/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] bytes = "1.4" hex = "0.4" -revm = { path = "../../crates/revm", version = "4.0.0",default-features=false } +revm = { path = "../../crates/revm", version = "4.0.1",default-features=false } microbench = "0.5" alloy-sol-macro = "0.6.2" alloy-sol-types = "0.6.2" diff --git a/bins/revme/Cargo.toml b/bins/revme/Cargo.toml index 04e9746adea..c1c1f9d787d 100644 --- a/bins/revme/Cargo.toml +++ b/bins/revme/Cargo.toml @@ -14,7 +14,7 @@ hash-db = "0.15" hashbrown = "0.14" indicatif = "0.17" plain_hasher = "0.2" -revm = { path = "../../crates/revm", version = "4.0.0", default-features = false, features = [ +revm = { path = "../../crates/revm", version = "4.0.1", default-features = false, features = [ "ethersdb", "std", "serde", diff --git a/crates/revm/CHANGELOG.md b/crates/revm/CHANGELOG.md index c345a1f2641..5d6e1352645 100644 --- a/crates/revm/CHANGELOG.md +++ b/crates/revm/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.0.1](https://github.com/bluealloy/revm/compare/revm-v4.0.0...revm-v4.0.1) - 2024-02-08 + +### Fixed +- *(op)* skip validation on deposit tx ([#1065](https://github.com/bluealloy/revm/pull/1065)) + +### Other +- *(revme)* statetests new format and return error ([#1066](https://github.com/bluealloy/revm/pull/1066)) + ## [4.0.0](https://github.com/bluealloy/revm/compare/revm-v3.5.0...revm-v4.0.0) - 2024-02-07 Refactored the logic inside Handler and added EvmBuilder that allows overwriting the default behavior. diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index 5756c16916e..ea96ba81871 100644 --- a/crates/revm/Cargo.toml +++ b/crates/revm/Cargo.toml @@ -6,7 +6,7 @@ keywords = ["no_std", "ethereum", "evm", "revm"] license = "MIT" name = "revm" repository = "https://github.com/bluealloy/revm" -version = "4.0.0" +version = "4.0.1" readme = "../../README.md" [package.metadata.docs.rs]