From 64f4e81c3b234881abf3fe0e9ac1378afed559ab Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 23 Feb 2024 02:38:40 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 10 +++++----- bins/revm-test/Cargo.toml | 2 +- bins/revme/CHANGELOG.md | 5 +++++ bins/revme/Cargo.toml | 4 ++-- crates/interpreter/CHANGELOG.md | 14 ++++++++++++++ crates/interpreter/Cargo.toml | 4 ++-- crates/precompile/CHANGELOG.md | 8 ++++++++ crates/precompile/Cargo.toml | 4 ++-- crates/primitives/CHANGELOG.md | 8 ++++++++ crates/primitives/Cargo.toml | 2 +- crates/revm/CHANGELOG.md | 21 +++++++++++++++++++++ crates/revm/Cargo.toml | 6 +++--- 12 files changed, 72 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 24524db34d..ec0cb813f0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2315,7 +2315,7 @@ dependencies = [ [[package]] name = "revm" -version = "6.0.0" +version = "6.1.0" dependencies = [ "anyhow", "auto_impl", @@ -2335,7 +2335,7 @@ dependencies = [ [[package]] name = "revm-interpreter" -version = "3.0.0" +version = "3.1.0" dependencies = [ "revm-primitives", "serde", @@ -2343,7 +2343,7 @@ dependencies = [ [[package]] name = "revm-precompile" -version = "4.0.1" +version = "4.1.0" dependencies = [ "aurora-engine-modexp", "c-kzg", @@ -2358,7 +2358,7 @@ dependencies = [ [[package]] name = "revm-primitives" -version = "2.0.1" +version = "2.1.0" dependencies = [ "alloy-primitives", "auto_impl", @@ -2390,7 +2390,7 @@ dependencies = [ [[package]] name = "revme" -version = "0.2.1" +version = "0.2.2" dependencies = [ "alloy-rlp", "hash-db", diff --git a/bins/revm-test/Cargo.toml b/bins/revm-test/Cargo.toml index 9b11771f1d..8133a997a6 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.0.0",default-features=false } +revm = { path = "../../crates/revm", version = "6.1.0",default-features=false } microbench = "0.5" alloy-sol-macro = "0.6.3" alloy-sol-types = "0.6.3" diff --git a/bins/revme/CHANGELOG.md b/bins/revme/CHANGELOG.md index f196b7a90b..0885677060 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.2.2](https://github.com/xhcdpg/revm/compare/revme-v0.2.1...revme-v0.2.2) - 2024-02-23 + +### Added +- split off serde_json dependency to its own feature ([#1104](https://github.com/xhcdpg/revm/pull/1104)) + ## [0.2.1](https://github.com/bluealloy/revm/compare/revme-v0.2.0...revme-v0.2.1) - 2024-02-07 ### Added diff --git a/bins/revme/Cargo.toml b/bins/revme/Cargo.toml index 12354e964a..59118f5fae 100644 --- a/bins/revme/Cargo.toml +++ b/bins/revme/Cargo.toml @@ -6,14 +6,14 @@ keywords = ["ethereum", "evm"] license = "MIT" repository = "https://github.com/bluealloy/revm" description = "Rust Ethereum Virtual Machine Executable" -version = "0.2.1" +version = "0.2.2" [dependencies] hash-db = "0.15" hashbrown = "0.14" indicatif = "0.17" plain_hasher = "0.2" -revm = { path = "../../crates/revm", version = "6.0.0", default-features = false, features = [ +revm = { path = "../../crates/revm", version = "6.1.0", default-features = false, features = [ "ethersdb", "std", "serde-json", diff --git a/crates/interpreter/CHANGELOG.md b/crates/interpreter/CHANGELOG.md index d30e814145..329021f4aa 100644 --- a/crates/interpreter/CHANGELOG.md +++ b/crates/interpreter/CHANGELOG.md @@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.1.0](https://github.com/xhcdpg/revm/compare/revm-interpreter-v3.0.0...revm-interpreter-v3.1.0) - 2024-02-23 + +### Added +- bump c-kzg, add portable feature, make it default ([#1106](https://github.com/xhcdpg/revm/pull/1106)) + +### Fixed +- replace tuple in sstore return with struct ([#1115](https://github.com/xhcdpg/revm/pull/1115)) +- *(db)* Set instruction result at outcome insert ([#1117](https://github.com/xhcdpg/revm/pull/1117)) + +### Other +- adding more test for i256 ([#1090](https://github.com/xhcdpg/revm/pull/1090)) +- *(refactor)* Propagate fatal error ([#1116](https://github.com/xhcdpg/revm/pull/1116)) +- clippy cleanup ([#1112](https://github.com/xhcdpg/revm/pull/1112)) + ## [3.0.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v2.1.0...revm-interpreter-v3.0.0) - 2024-02-17 ### Fixed diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index ee5520322f..90d4e3fc20 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.0.0" +version = "3.1.0" 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.0.1", default-features = false } +revm-primitives = { path = "../primitives", version = "2.1.0", 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 c6a88e3b8e..6f6aa01ffc 100644 --- a/crates/precompile/CHANGELOG.md +++ b/crates/precompile/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.1.0](https://github.com/xhcdpg/revm/compare/revm-precompile-v4.0.1...revm-precompile-v4.1.0) - 2024-02-23 + +### Added +- bump c-kzg, add portable feature, make it default ([#1106](https://github.com/xhcdpg/revm/pull/1106)) + +### Other +- clippy cleanup ([#1112](https://github.com/xhcdpg/revm/pull/1112)) + ## [4.0.1](https://github.com/bluealloy/revm/compare/revm-precompile-v4.0.0...revm-precompile-v4.0.1) - 2024-02-17 ### Fixed diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index 54838c7643..b11643c2c0 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.0.1" +version = "4.1.0" [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -revm-primitives = { path = "../primitives", version = "2.0.1", default-features = false } +revm-primitives = { path = "../primitives", version = "2.1.0", 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 cd6b929acb..714927c5a1 100644 --- a/crates/primitives/CHANGELOG.md +++ b/crates/primitives/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.1.0](https://github.com/xhcdpg/revm/compare/revm-primitives-v2.0.1...revm-primitives-v2.1.0) - 2024-02-23 + +### Added +- bump c-kzg, add portable feature, make it default ([#1106](https://github.com/xhcdpg/revm/pull/1106)) + +### Other +- clippy cleanup ([#1112](https://github.com/xhcdpg/revm/pull/1112)) + ## [2.0.1](https://github.com/bluealloy/revm/compare/revm-primitives-v2.0.0...revm-primitives-v2.0.1) - 2024-02-17 ### Fixed diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 212fde5195..f811b3ab8a 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.0.1" +version = "2.1.0" 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 4c4e796ab4..edf4bea7ff 100644 --- a/crates/revm/CHANGELOG.md +++ b/crates/revm/CHANGELOG.md @@ -6,6 +6,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [6.1.0](https://github.com/xhcdpg/revm/compare/revm-v6.0.0...revm-v6.1.0) - 2024-02-23 + +### Added +- bump c-kzg, add portable feature, make it default ([#1106](https://github.com/xhcdpg/revm/pull/1106)) +- split off serde_json dependency to its own feature ([#1104](https://github.com/xhcdpg/revm/pull/1104)) + +### Fixed +- replace tuple in sstore return with struct ([#1115](https://github.com/xhcdpg/revm/pull/1115)) +- fix EthersDB deadlock ([#1089](https://github.com/xhcdpg/revm/pull/1089)) +- Handle fatal db error on load_account ([#1111](https://github.com/xhcdpg/revm/pull/1111)) + +### Other +- Ensure `L1Block` is in the cache ([#1121](https://github.com/xhcdpg/revm/pull/1121)) +- Fix feature name for generate_block_traces example ([#1120](https://github.com/xhcdpg/revm/pull/1120)) +- *(refactor)* Propagate fatal error ([#1116](https://github.com/xhcdpg/revm/pull/1116)) +- Revert "fix EthersDB deadlock ([#1089](https://github.com/xhcdpg/revm/pull/1089))" ([#1118](https://github.com/xhcdpg/revm/pull/1118)) +- Remove DatabaseRef bound on CacheDB ([#1113](https://github.com/xhcdpg/revm/pull/1113)) +- clippy cleanup ([#1112](https://github.com/xhcdpg/revm/pull/1112)) +- *(deps)* bump anyhow from 1.0.79 to 1.0.80 ([#1108](https://github.com/xhcdpg/revm/pull/1108)) +- improve EIP-3155 implementation ([#1105](https://github.com/xhcdpg/revm/pull/1105)) + ## [6.0.0](https://github.com/bluealloy/revm/compare/revm-v5.0.0...revm-v6.0.0) - 2024-02-17 ### Added diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index 9175b2668e..3cfe860376 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.0.0" +version = "6.1.0" readme = "../../README.md" [package.metadata.docs.rs] @@ -15,8 +15,8 @@ rustdoc-args = ["--cfg", "docsrs"] [dependencies] # revm -revm-interpreter = { path = "../interpreter", version = "3.0.0", default-features = false } -revm-precompile = { path = "../precompile", version = "4.0.1", default-features = false } +revm-interpreter = { path = "../interpreter", version = "3.1.0", default-features = false } +revm-precompile = { path = "../precompile", version = "4.1.0", default-features = false } # misc auto_impl = { version = "1.1", default-features = false }