From d424369cf030954ed4c0d04d48040228257b27fd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 04:24:54 +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 | 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 | 6 ++++++ crates/revm/Cargo.toml | 6 +++--- 12 files changed, 43 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 994388fde0..6f5c00e487 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2321,7 +2321,7 @@ dependencies = [ [[package]] name = "revm" -version = "7.1.0" +version = "7.1.1" dependencies = [ "anyhow", "auto_impl", @@ -2341,7 +2341,7 @@ dependencies = [ [[package]] name = "revm-interpreter" -version = "3.3.0" +version = "3.3.1" dependencies = [ "revm-primitives", "serde", @@ -2349,7 +2349,7 @@ dependencies = [ [[package]] name = "revm-precompile" -version = "5.0.0" +version = "5.0.1" dependencies = [ "aurora-engine-modexp", "c-kzg", @@ -2364,7 +2364,7 @@ dependencies = [ [[package]] name = "revm-primitives" -version = "3.0.0" +version = "3.0.1" dependencies = [ "alloy-primitives", "auto_impl", @@ -2397,7 +2397,7 @@ dependencies = [ [[package]] name = "revme" -version = "0.3.0" +version = "0.3.1" dependencies = [ "alloy-rlp", "hash-db", diff --git a/bins/revm-test/Cargo.toml b/bins/revm-test/Cargo.toml index f0155ef020..13fe34b98b 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 = "7.1.0",default-features=false } +revm = { path = "../../crates/revm", version = "7.1.1",default-features=false } microbench = "0.5" alloy-sol-macro = "0.6.4" alloy-sol-types = "0.6.4" diff --git a/bins/revme/CHANGELOG.md b/bins/revme/CHANGELOG.md index eb0a0551f2..0e1d89eac9 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.1](https://github.com/ch4ns1q1/revm/compare/revme-v0.3.0...revme-v0.3.1) - 2024-03-12 + +### Other +- tag v32 revm v7.1.0 ([#1176](https://github.com/ch4ns1q1/revm/pull/1176)) + ## [0.3.0](https://github.com/bluealloy/revm/compare/revme-v0.2.2...revme-v0.3.0) - 2024-03-08 ### Added diff --git a/bins/revme/Cargo.toml b/bins/revme/Cargo.toml index 35757cc725..869aaf7438 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.3.0" +version = "0.3.1" [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 = "7.1.0", default-features = false, features = [ +revm = { path = "../../crates/revm", version = "7.1.1", default-features = false, features = [ "ethersdb", "std", "serde-json", diff --git a/crates/interpreter/CHANGELOG.md b/crates/interpreter/CHANGELOG.md index d3b4dbc817..69d526979e 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.3.1](https://github.com/ch4ns1q1/revm/compare/revm-interpreter-v3.3.0...revm-interpreter-v3.3.1) - 2024-03-12 + +### Other +- Fix typo in readme ([#1185](https://github.com/ch4ns1q1/revm/pull/1185)) + ## [3.3.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v3.2.0...revm-interpreter-v3.3.0) - 2024-03-08 ### Added diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index 3e1c2409cb..132f0656b0 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.3.0" +version = "3.3.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 = "3.0.0", default-features = false } +revm-primitives = { path = "../primitives", version = "3.0.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 b6f04fb97d..b4f71395ff 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] +## [5.0.1](https://github.com/ch4ns1q1/revm/compare/revm-precompile-v5.0.0...revm-precompile-v5.0.1) - 2024-03-12 + +### Other +- updated the following local packages: revm-primitives + ## [5.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v4.1.0...revm-precompile-v5.0.0) - 2024-03-08 ### Added diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index b27ac67511..850998f333 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 = "5.0.0" +version = "5.0.1" [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -revm-primitives = { path = "../primitives", version = "3.0.0", default-features = false } +revm-primitives = { path = "../primitives", version = "3.0.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 11d98effec..721796155a 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] +## [3.0.1](https://github.com/ch4ns1q1/revm/compare/revm-primitives-v3.0.0...revm-primitives-v3.0.1) - 2024-03-12 + +### Other +- Fix typo in readme ([#1185](https://github.com/ch4ns1q1/revm/pull/1185)) +- improve error implementations ([#1183](https://github.com/ch4ns1q1/revm/pull/1183)) + ## [3.0.0](https://github.com/bluealloy/revm/compare/revm-primitives-v2.1.0...revm-primitives-v3.0.0) - 2024-03-08 ### Added diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index d4b5a70801..f4edc063e3 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 = "3.0.0" +version = "3.0.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 9f6d4fa4b1..6b5c89bf75 100644 --- a/crates/revm/CHANGELOG.md +++ b/crates/revm/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [7.1.1](https://github.com/ch4ns1q1/revm/compare/revm-v7.1.0...revm-v7.1.1) - 2024-03-12 + +### Other +- Fix typo in readme ([#1185](https://github.com/ch4ns1q1/revm/pull/1185)) +- Update post_execution.rs ([#1180](https://github.com/ch4ns1q1/revm/pull/1180)) + ## [7.1.0](https://github.com/bluealloy/revm/compare/revm-v7.0.0...revm-v8.0.0) - 2024-03-08 ### Added diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index 539c44328d..1c75cdffcd 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 = "7.1.0" +version = "7.1.1" readme = "../../README.md" [package.metadata.docs.rs] @@ -15,8 +15,8 @@ rustdoc-args = ["--cfg", "docsrs"] [dependencies] # revm -revm-interpreter = { path = "../interpreter", version = "3.3.0", default-features = false } -revm-precompile = { path = "../precompile", version = "5.0.0", default-features = false } +revm-interpreter = { path = "../interpreter", version = "3.3.1", default-features = false } +revm-precompile = { path = "../precompile", version = "5.0.1", default-features = false } # misc auto_impl = { version = "1.2", default-features = false }