From 7c8ac7284f12906bb067825195339c76f0cfdf88 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 12 Feb 2024 01:44:22 +0000 Subject: [PATCH] chore: release Signed-off-by: GitHub Action --- Cargo.lock | 6 +++--- bins/revm-test/Cargo.toml | 2 +- bins/revme/Cargo.toml | 2 +- crates/interpreter/CHANGELOG.md | 5 +++++ crates/interpreter/Cargo.toml | 2 +- crates/precompile/CHANGELOG.md | 9 +++++++++ crates/precompile/Cargo.toml | 2 +- crates/revm/CHANGELOG.md | 12 ++++++++++++ crates/revm/Cargo.toml | 6 +++--- 9 files changed, 36 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 781685a3c7..09f4b80781 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2322,7 +2322,7 @@ dependencies = [ [[package]] name = "revm" -version = "4.0.0" +version = "5.0.0" dependencies = [ "anyhow", "auto_impl", @@ -2342,7 +2342,7 @@ dependencies = [ [[package]] name = "revm-interpreter" -version = "2.0.0" +version = "2.1.0" dependencies = [ "revm-primitives", "serde", @@ -2350,7 +2350,7 @@ dependencies = [ [[package]] name = "revm-precompile" -version = "3.0.0" +version = "4.0.0" dependencies = [ "aurora-engine-modexp", "blst", diff --git a/bins/revm-test/Cargo.toml b/bins/revm-test/Cargo.toml index 9b18142a94..0cc0bf2fe8 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 = "5.0.0",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 04e9746ade..10701aad55 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 = "5.0.0", default-features = false, features = [ "ethersdb", "std", "serde", diff --git a/crates/interpreter/CHANGELOG.md b/crates/interpreter/CHANGELOG.md index 8a02ec82f9..02943ca428 100644 --- a/crates/interpreter/CHANGELOG.md +++ b/crates/interpreter/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.1.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v2.0.0...revm-interpreter-v2.1.0) - 2024-02-12 + +### Added +- *(interpreter)* relax `make_boxed_instruction_table::FN` to `FnMut` ([#1076](https://github.com/bluealloy/revm/pull/1076)) + ## [2.0.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v1.3.0...revm-interpreter-v2.0.0) - 2024-02-07 Iterpreter will not be called in recursive calls but would return Action ( CALL/CREATE) that will be executed by the main loop. diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index f3803c89ab..a9122b9c27 100644 --- a/crates/interpreter/Cargo.toml +++ b/crates/interpreter/Cargo.toml @@ -6,7 +6,7 @@ keywords = ["no_std", "ethereum", "evm", "revm", "interpreter"] license = "MIT" name = "revm-interpreter" repository = "https://github.com/bluealloy/revm" -version = "2.0.0" +version = "2.1.0" readme = "../../README.md" [package.metadata.docs.rs] diff --git a/crates/precompile/CHANGELOG.md b/crates/precompile/CHANGELOG.md index 05e663a47e..3d332ee8b2 100644 --- a/crates/precompile/CHANGELOG.md +++ b/crates/precompile/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v3.0.0...revm-precompile-v4.0.0) - 2024-02-12 + +### Other +- *(precompile)* don't allocate if padding is not needed ([#1075](https://github.com/bluealloy/revm/pull/1075)) +- *(precompile)* simplify bn128 precompile implementations ([#1074](https://github.com/bluealloy/revm/pull/1074)) +- *(precompile)* make use of padding utilities, simplify secp256k1 ([#1073](https://github.com/bluealloy/revm/pull/1073)) +- precompile bn128 copy ([#1071](https://github.com/bluealloy/revm/pull/1071)) +- *(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 dc995a8b73..2c89ae39ea 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 = "4.0.0" [package.metadata.docs.rs] all-features = true diff --git a/crates/revm/CHANGELOG.md b/crates/revm/CHANGELOG.md index c345a1f264..bf459288d8 100644 --- a/crates/revm/CHANGELOG.md +++ b/crates/revm/CHANGELOG.md @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [5.0.0](https://github.com/bluealloy/revm/compare/revm-v4.0.0...revm-v5.0.0) - 2024-02-12 + +### Fixed +- properly set context env ([#1070](https://github.com/bluealloy/revm/pull/1070)) +- typo on internal append_handle_register methods ([#1069](https://github.com/bluealloy/revm/pull/1069)) +- *(op)* skip validation on deposit tx ([#1065](https://github.com/bluealloy/revm/pull/1065)) + +### Other +- *(precompile)* make use of padding utilities, simplify secp256k1 ([#1073](https://github.com/bluealloy/revm/pull/1073)) +- *(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 5756c16916..a49088366f 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 = "5.0.0" readme = "../../README.md" [package.metadata.docs.rs] @@ -15,8 +15,8 @@ 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-interpreter = { path = "../interpreter", version = "2.1.0", default-features = false } +revm-precompile = { path = "../precompile", version = "4.0.0", default-features = false } # misc auto_impl = { version = "1.1", default-features = false }