From c699172b42e194d62868e214b3c4068206898474 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 12 Feb 2024 23:39:55 +0000 Subject: [PATCH] chore: release Signed-off-by: GitHub Action --- Cargo.lock | 8 ++++---- bins/revm-test/Cargo.toml | 2 +- bins/revme/Cargo.toml | 2 +- crates/interpreter/CHANGELOG.md | 6 ++++++ crates/interpreter/Cargo.toml | 4 ++-- crates/precompile/CHANGELOG.md | 5 +++++ crates/precompile/Cargo.toml | 4 ++-- crates/primitives/CHANGELOG.md | 5 +++++ crates/primitives/Cargo.toml | 2 +- crates/revm/CHANGELOG.md | 8 ++++++++ crates/revm/Cargo.toml | 6 +++--- 11 files changed, 38 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index edd099fdeb..6a729be5ee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2315,7 +2315,7 @@ dependencies = [ [[package]] name = "revm" -version = "5.0.0" +version = "6.0.0" dependencies = [ "anyhow", "auto_impl", @@ -2335,7 +2335,7 @@ dependencies = [ [[package]] name = "revm-interpreter" -version = "2.1.0" +version = "3.0.0" dependencies = [ "revm-primitives", "serde", @@ -2343,7 +2343,7 @@ dependencies = [ [[package]] name = "revm-precompile" -version = "4.0.0" +version = "4.0.1" dependencies = [ "aurora-engine-modexp", "blst", @@ -2359,7 +2359,7 @@ dependencies = [ [[package]] name = "revm-primitives" -version = "2.0.0" +version = "2.0.1" dependencies = [ "alloy-primitives", "auto_impl", diff --git a/bins/revm-test/Cargo.toml b/bins/revm-test/Cargo.toml index 0cc0bf2fe8..6412df098c 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 = "5.0.0",default-features=false } +revm = { path = "../../crates/revm", version = "6.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 10701aad55..de08e5c299 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 = "5.0.0", default-features = false, features = [ +revm = { path = "../../crates/revm", version = "6.0.0", default-features = false, features = [ "ethersdb", "std", "serde", diff --git a/crates/interpreter/CHANGELOG.md b/crates/interpreter/CHANGELOG.md index 02943ca428..8f3df7aed6 100644 --- a/crates/interpreter/CHANGELOG.md +++ b/crates/interpreter/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.0.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v2.1.0...revm-interpreter-v3.0.0) - 2024-02-12 + +### Other +- Add memory offset ([#1032](https://github.com/bluealloy/revm/pull/1032)) +- license date and revm docs ([#1080](https://github.com/bluealloy/revm/pull/1080)) + ## [2.1.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v2.0.0...revm-interpreter-v2.1.0) - 2024-02-12 ### Added diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index a9122b9c27..dff1edfc9f 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.1.0" +version = "3.0.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.0", default-features = false } +revm-primitives = { path = "../primitives", version = "2.0.1", default-features = false } # optional serde = { version = "1.0", default-features = false, features = ["derive", "rc"], optional = true } diff --git a/crates/precompile/CHANGELOG.md b/crates/precompile/CHANGELOG.md index 3d332ee8b2..df45ec70af 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.0.1](https://github.com/bluealloy/revm/compare/revm-precompile-v4.0.0...revm-precompile-v4.0.1) - 2024-02-12 + +### Other +- license date and revm docs ([#1080](https://github.com/bluealloy/revm/pull/1080)) + ## [4.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v3.0.0...revm-precompile-v4.0.0) - 2024-02-12 ### Other diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index 2c89ae39ea..364732d357 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.0" +version = "4.0.1" [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -revm-primitives = { path = "../primitives", version = "2.0.0", default-features = false } +revm-primitives = { path = "../primitives", version = "2.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 670339e391..9657e93861 100644 --- a/crates/primitives/CHANGELOG.md +++ b/crates/primitives/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.1](https://github.com/bluealloy/revm/compare/revm-primitives-v2.0.0...revm-primitives-v2.0.1) - 2024-02-12 + +### Other +- license date and revm docs ([#1080](https://github.com/bluealloy/revm/pull/1080)) + ## [2.0.0](https://github.com/bluealloy/revm/compare/revm-primitives-v1.3.0...revm-primitives-v2.0.0) - 2024-02-07 ### Added diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 4e0212883c..3093dea792 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.0" +version = "2.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 bf459288d8..368f3d4eee 100644 --- a/crates/revm/CHANGELOG.md +++ b/crates/revm/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [6.0.0](https://github.com/bluealloy/revm/compare/revm-v5.0.0...revm-v6.0.0) - 2024-02-12 + +### Added +- improve OriginalValuesKnown docs ([#1083](https://github.com/bluealloy/revm/pull/1083)) + +### Other +- Add memory offset ([#1032](https://github.com/bluealloy/revm/pull/1032)) + ## [5.0.0](https://github.com/bluealloy/revm/compare/revm-v4.0.0...revm-v5.0.0) - 2024-02-12 ### Fixed diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index a49088366f..489e6a1e39 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 = "5.0.0" +version = "6.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.1.0", default-features = false } -revm-precompile = { path = "../precompile", version = "4.0.0", default-features = false } +revm-interpreter = { path = "../interpreter", version = "3.0.0", default-features = false } +revm-precompile = { path = "../precompile", version = "4.0.1", default-features = false } # misc auto_impl = { version = "1.1", default-features = false }