From 6655df251d815ef92ca90621b5e8c2bd40d0f02d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 8 Feb 2024 21:09:29 +0000 Subject: [PATCH] chore: release Signed-off-by: GitHub Action --- Cargo.lock | 4 ++-- bins/revm-test/Cargo.toml | 2 +- bins/revme/Cargo.toml | 2 +- crates/precompile/CHANGELOG.md | 5 +++++ crates/precompile/Cargo.toml | 2 +- crates/revm/CHANGELOG.md | 9 +++++++++ crates/revm/Cargo.toml | 4 ++-- 7 files changed, 21 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fcf01731f1e..3e46008e87a 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", @@ -2350,7 +2350,7 @@ dependencies = [ [[package]] name = "revm-precompile" -version = "3.0.0" +version = "3.0.1" dependencies = [ "aurora-engine-modexp", "blst", 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/precompile/CHANGELOG.md b/crates/precompile/CHANGELOG.md index 05e663a47e2..8357bf59108 100644 --- a/crates/precompile/CHANGELOG.md +++ b/crates/precompile/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.0.1](https://github.com/bluealloy/revm/compare/revm-precompile-v3.0.0...revm-precompile-v3.0.1) - 2024-02-08 + +### Other +- *(revm)* Add helpers to Build Revm with Context ([#1068](https://github.com/bluealloy/revm/pull/1068)) + ## [3.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v2.2.0...revm-precompile-v3.0.0) - 2024-02-07 Precompiles are refactored from list to HashMap, this allows adding arbitrary precompiles to the list. diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index dc995a8b73d..5796ea32dc6 100644 --- a/crates/precompile/Cargo.toml +++ b/crates/precompile/Cargo.toml @@ -6,7 +6,7 @@ keywords = ["no_std", "ethereum", "evm", "revm", "precompiles"] license = "MIT" name = "revm-precompile" repository = "https://github.com/bluealloy/revm" -version = "3.0.0" +version = "3.0.1" [package.metadata.docs.rs] all-features = true diff --git a/crates/revm/CHANGELOG.md b/crates/revm/CHANGELOG.md index c345a1f2641..3faf38827b4 100644 --- a/crates/revm/CHANGELOG.md +++ b/crates/revm/CHANGELOG.md @@ -6,6 +6,15 @@ 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 +- *(revm)* Add helpers to Build Revm with Context ([#1068](https://github.com/bluealloy/revm/pull/1068)) +- *(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..193cef0d6d1 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] @@ -16,7 +16,7 @@ rustdoc-args = ["--cfg", "docsrs"] [dependencies] # revm revm-interpreter = { path = "../interpreter", version = "2.0.0", default-features = false } -revm-precompile = { path = "../precompile", version = "3.0.0", default-features = false } +revm-precompile = { path = "../precompile", version = "3.0.1", default-features = false } # misc auto_impl = { version = "1.1", default-features = false }