From 0a17aa38cb491f5bfb733d15d9aba5b225b875e7 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 2 Mar 2024 00:19:46 +0000 Subject: [PATCH] chore: release Signed-off-by: GitHub Action --- Cargo.lock | 10 +++++----- bins/revm-test/Cargo.toml | 2 +- bins/revme/CHANGELOG.md | 5 +++++ bins/revme/Cargo.toml | 4 ++-- crates/interpreter/CHANGELOG.md | 5 +++++ crates/interpreter/Cargo.toml | 4 ++-- crates/precompile/CHANGELOG.md | 5 +++++ crates/precompile/Cargo.toml | 4 ++-- crates/primitives/CHANGELOG.md | 6 ++++++ crates/primitives/Cargo.toml | 2 +- crates/revm/CHANGELOG.md | 17 +++++++++++++++++ crates/revm/Cargo.toml | 6 +++--- 12 files changed, 54 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 836e401e62..1a0bd79235 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2315,7 +2315,7 @@ dependencies = [ [[package]] name = "revm" -version = "6.1.0" +version = "6.2.0" dependencies = [ "anyhow", "auto_impl", @@ -2334,7 +2334,7 @@ dependencies = [ [[package]] name = "revm-interpreter" -version = "3.1.0" +version = "3.1.1" dependencies = [ "revm-primitives", "serde", @@ -2342,7 +2342,7 @@ dependencies = [ [[package]] name = "revm-precompile" -version = "4.1.0" +version = "4.1.1" dependencies = [ "aurora-engine-modexp", "c-kzg", @@ -2357,7 +2357,7 @@ dependencies = [ [[package]] name = "revm-primitives" -version = "2.1.0" +version = "2.1.1" dependencies = [ "alloy-primitives", "auto_impl", @@ -2389,7 +2389,7 @@ dependencies = [ [[package]] name = "revme" -version = "0.2.2" +version = "0.3.0" dependencies = [ "alloy-rlp", "hash-db", diff --git a/bins/revm-test/Cargo.toml b/bins/revm-test/Cargo.toml index 17c6ff94b0..5f4c66180c 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 = "6.1.0",default-features=false } +revm = { path = "../../crates/revm", version = "6.2.0",default-features=false } microbench = "0.5" alloy-sol-macro = "0.6.4" alloy-sol-types = "0.6.3" diff --git a/bins/revme/CHANGELOG.md b/bins/revme/CHANGELOG.md index cdd52ccc7b..94bac4f538 100644 --- a/bins/revme/CHANGELOG.md +++ b/bins/revme/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/Autoparallel/revm/compare/revme-v0.2.2...revme-v0.3.0) - 2024-03-02 + +### Added +- add evm script ([#1039](https://github.com/Autoparallel/revm/pull/1039)) + ## [0.2.2](https://github.com/bluealloy/revm/compare/revme-v0.2.1...revme-v0.2.2) - 2024-02-22 ### Added diff --git a/bins/revme/Cargo.toml b/bins/revme/Cargo.toml index 6792e8c30a..bba174af18 100644 --- a/bins/revme/Cargo.toml +++ b/bins/revme/Cargo.toml @@ -6,7 +6,7 @@ keywords = ["ethereum", "evm"] license = "MIT" repository = "https://github.com/bluealloy/revm" description = "Rust Ethereum Virtual Machine Executable" -version = "0.2.2" +version = "0.3.0" [dependencies] hash-db = "0.15" @@ -15,7 +15,7 @@ hashbrown = "0.14" indicatif = "0.17" microbench = "0.5" plain_hasher = "0.2" -revm = { path = "../../crates/revm", version = "6.1.0", default-features = false, features = [ +revm = { path = "../../crates/revm", version = "6.2.0", default-features = false, features = [ "ethersdb", "std", "serde-json", diff --git a/crates/interpreter/CHANGELOG.md b/crates/interpreter/CHANGELOG.md index 27a0b381af..62b856e444 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] +## [3.1.1](https://github.com/Autoparallel/revm/compare/revm-interpreter-v3.1.0...revm-interpreter-v3.1.1) - 2024-03-02 + +### Other +- updated the following local packages: revm-primitives + ## [3.1.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v3.0.0...revm-interpreter-v3.1.0) - 2024-02-22 ### Added diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index 90d4e3fc20..6660d474ac 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 = "3.1.0" +version = "3.1.1" readme = "../../README.md" [package.metadata.docs.rs] @@ -14,7 +14,7 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -revm-primitives = { path = "../primitives", version = "2.1.0", default-features = false } +revm-primitives = { path = "../primitives", version = "2.1.1", default-features = false } # optional serde = { version = "1.0", default-features = false, features = [ diff --git a/crates/precompile/CHANGELOG.md b/crates/precompile/CHANGELOG.md index c4ed76761e..a53a5c1825 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] +## [4.1.1](https://github.com/Autoparallel/revm/compare/revm-precompile-v4.1.0...revm-precompile-v4.1.1) - 2024-03-02 + +### Other +- updated the following local packages: revm-primitives + ## [4.1.0](https://github.com/bluealloy/revm/compare/revm-precompile-v4.0.1...revm-precompile-v4.1.0) - 2024-02-22 ### Added diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index b11643c2c0..e1661eeee0 100644 --- a/crates/precompile/Cargo.toml +++ b/crates/precompile/Cargo.toml @@ -6,14 +6,14 @@ keywords = ["no_std", "ethereum", "evm", "revm", "precompiles"] license = "MIT" name = "revm-precompile" repository = "https://github.com/bluealloy/revm" -version = "4.1.0" +version = "4.1.1" [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -revm-primitives = { path = "../primitives", version = "2.1.0", default-features = false } +revm-primitives = { path = "../primitives", version = "2.1.1", default-features = false } bn = { package = "substrate-bn", version = "0.6", default-features = false } once_cell = { version = "1.19", default-features = false, features = ["alloc"] } ripemd = { version = "0.1", default-features = false } diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index 2def267bb5..ca178f2fd3 100644 --- a/crates/primitives/CHANGELOG.md +++ b/crates/primitives/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.1.1](https://github.com/Autoparallel/revm/compare/revm-primitives-v2.1.0...revm-primitives-v2.1.1) - 2024-03-02 + +### Other +- *(deps)* bump auto_impl from 1.1.2 to 1.2.0 ([#1132](https://github.com/Autoparallel/revm/pull/1132)) +- add helper function for spec id ([#1130](https://github.com/Autoparallel/revm/pull/1130)) + ## [2.1.0](https://github.com/bluealloy/revm/compare/revm-primitives-v2.0.1...revm-primitives-v2.1.0) - 2024-02-22 ### Added diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 3217a24b2b..2de29b8410 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -6,7 +6,7 @@ keywords = ["no_std", "ethereum", "evm", "revm", "types"] license = "MIT" name = "revm-primitives" repository = "https://github.com/bluealloy/revm" -version = "2.1.0" +version = "2.1.1" readme = "../../README.md" # Don't need to run build script outside of this repo diff --git a/crates/revm/CHANGELOG.md b/crates/revm/CHANGELOG.md index c09dc77418..1dcd4dffca 100644 --- a/crates/revm/CHANGELOG.md +++ b/crates/revm/CHANGELOG.md @@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [6.2.0](https://github.com/Autoparallel/revm/compare/revm-v6.1.0...revm-v6.2.0) - 2024-03-02 + +### Added +- add with_handler method to EvmBuilder ([#1124](https://github.com/Autoparallel/revm/pull/1124)) + +### Fixed +- make `feature = "optional_gas_refund"` work ([#1134](https://github.com/Autoparallel/revm/pull/1134)) + +### Other +- remove clone for context in handler_register.rs ([#1138](https://github.com/Autoparallel/revm/pull/1138)) +- Check runtime dynamically ([#1135](https://github.com/Autoparallel/revm/pull/1135)) +- *(deps)* bump auto_impl from 1.1.2 to 1.2.0 ([#1132](https://github.com/Autoparallel/revm/pull/1132)) +- Add `db` and `db_mut` to evm ([#1133](https://github.com/Autoparallel/revm/pull/1133)) +- add ToString for no_std add exports some types in no_std ([#1128](https://github.com/Autoparallel/revm/pull/1128)) +- Add `clone` method to `ContextWithHandlerCfg` ([#1127](https://github.com/Autoparallel/revm/pull/1127)) +- remove unused EvmInstructionTables type alias ([#1123](https://github.com/Autoparallel/revm/pull/1123)) + ## [6.1.0](https://github.com/bluealloy/revm/compare/revm-v6.0.0...revm-v6.1.0) - 2024-02-22 ### Added diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index ddb4757343..3243f7d758 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 = "6.1.0" +version = "6.2.0" readme = "../../README.md" [package.metadata.docs.rs] @@ -15,8 +15,8 @@ rustdoc-args = ["--cfg", "docsrs"] [dependencies] # revm -revm-interpreter = { path = "../interpreter", version = "3.1.0", default-features = false } -revm-precompile = { path = "../precompile", version = "4.1.0", default-features = false } +revm-interpreter = { path = "../interpreter", version = "3.1.1", default-features = false } +revm-precompile = { path = "../precompile", version = "4.1.1", default-features = false } # misc auto_impl = { version = "1.2", default-features = false }