From 84f20a001077b9b9ebeca00163f43ecbf3c9e447 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 18 Feb 2025 09:13:48 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 16 ++++++++-------- Cargo.toml | 12 ++++++------ bins/revme/CHANGELOG.md | 6 ++++++ bins/revme/Cargo.toml | 2 +- crates/context/CHANGELOG.md | 6 ++++++ crates/context/Cargo.toml | 2 +- crates/database/CHANGELOG.md | 6 ++++++ crates/database/Cargo.toml | 2 +- crates/handler/CHANGELOG.md | 6 ++++++ crates/handler/Cargo.toml | 2 +- crates/inspector/CHANGELOG.md | 6 ++++++ crates/inspector/Cargo.toml | 2 +- crates/optimism/CHANGELOG.md | 6 ++++++ crates/optimism/Cargo.toml | 2 +- crates/revm/CHANGELOG.md | 6 ++++++ crates/revm/Cargo.toml | 2 +- crates/statetest-types/CHANGELOG.md | 6 ++++++ crates/statetest-types/Cargo.toml | 2 +- 18 files changed, 70 insertions(+), 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ffd1abb446..93165763f2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3387,7 +3387,7 @@ dependencies = [ [[package]] name = "revm" -version = "20.0.0-alpha.1" +version = "20.0.0-alpha.2" dependencies = [ "alloy-eip7702", "alloy-provider", @@ -3427,7 +3427,7 @@ dependencies = [ [[package]] name = "revm-context" -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" dependencies = [ "alloy-eip2930", "alloy-eip7702", @@ -3461,7 +3461,7 @@ dependencies = [ [[package]] name = "revm-database" -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" dependencies = [ "alloy-eips", "alloy-provider", @@ -3497,7 +3497,7 @@ dependencies = [ [[package]] name = "revm-handler" -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" dependencies = [ "auto_impl", "revm-bytecode", @@ -3515,7 +3515,7 @@ dependencies = [ [[package]] name = "revm-inspector" -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" dependencies = [ "auto_impl", "revm", @@ -3548,7 +3548,7 @@ dependencies = [ [[package]] name = "revm-optimism" -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" dependencies = [ "alloy-sol-types", "anyhow", @@ -3621,7 +3621,7 @@ dependencies = [ [[package]] name = "revm-statetest-types" -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" dependencies = [ "alloy-eip2930", "alloy-eip7702", @@ -3632,7 +3632,7 @@ dependencies = [ [[package]] name = "revme" -version = "3.0.0-alpha.1" +version = "3.0.0-alpha.2" dependencies = [ "alloy-rlp", "alloy-sol-macro", diff --git a/Cargo.toml b/Cargo.toml index e05874829f..3e737353b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,20 +39,20 @@ default-members = ["crates/revm"] [workspace.dependencies] # revm -revm = { path = "crates/revm", version = "20.0.0-alpha.1", default-features = false } +revm = { path = "crates/revm", version = "20.0.0-alpha.2", default-features = false } primitives = { path = "crates/primitives", package = "revm-primitives", version = "16.0.0-alpha.1", default-features = false } bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "1.0.0-alpha.1", default-features = false } -database = { path = "crates/database", package = "revm-database", version = "1.0.0-alpha.1", default-features = false } +database = { path = "crates/database", package = "revm-database", version = "1.0.0-alpha.2", default-features = false } database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "1.0.0-alpha.1", default-features = false } specification = { path = "crates/specification", package = "revm-specification", version = "1.0.0-alpha.1", default-features = false } state = { path = "crates/state", package = "revm-state", version = "1.0.0-alpha.1", default-features = false } interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "16.0.0-alpha.1", default-features = false } -inspector = { path = "crates/inspector", package = "revm-inspector", version = "1.0.0-alpha.1", default-features = false } +inspector = { path = "crates/inspector", package = "revm-inspector", version = "1.0.0-alpha.2", default-features = false } precompile = { path = "crates/precompile", package = "revm-precompile", version = "17.0.0-alpha.1", default-features = false } -statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "1.0.0-alpha.1", default-features = false } -context = { path = "crates/context", package = "revm-context", version = "1.0.0-alpha.1", default-features = false } +statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "1.0.0-alpha.2", default-features = false } +context = { path = "crates/context", package = "revm-context", version = "1.0.0-alpha.2", default-features = false } context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "1.0.0-alpha.1", default-features = false } -handler = { path = "crates/handler", package = "revm-handler", version = "1.0.0-alpha.1", default-features = false } +handler = { path = "crates/handler", package = "revm-handler", version = "1.0.0-alpha.2", default-features = false } # alloy alloy-eip2930 = { version = "0.1.0", default-features = false } diff --git a/bins/revme/CHANGELOG.md b/bins/revme/CHANGELOG.md index aea387682e..4efdf802a0 100644 --- a/bins/revme/CHANGELOG.md +++ b/bins/revme/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.0.0-alpha.2](https://github.com/satyasai69/revm/compare/revme-v3.0.0-alpha.1...revme-v3.0.0-alpha.2) - 2025-02-18 + +### Other + +- updated the following local packages: revm-database, revm-inspector, revm + ## [3.0.0-alpha.1](https://github.com/bluealloy/revm/compare/revme-v2.5.0...revme-v3.0.0-alpha.1) - 2025-02-16 ### Added diff --git a/bins/revme/Cargo.toml b/bins/revme/Cargo.toml index dbebed66ed..33afd5523c 100644 --- a/bins/revme/Cargo.toml +++ b/bins/revme/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revme" description = "Rust Ethereum Virtual Machine Executable" -version = "3.0.0-alpha.1" +version = "3.0.0-alpha.2" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/context/CHANGELOG.md b/crates/context/CHANGELOG.md index 9c403aa894..eafa2b948e 100644 --- a/crates/context/CHANGELOG.md +++ b/crates/context/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0-alpha.2](https://github.com/satyasai69/revm/compare/revm-context-v1.0.0-alpha.1...revm-context-v1.0.0-alpha.2) - 2025-02-18 + +### Other + +- re-export all crates from `revm` (#2088) + ## [1.0.0-alpha.1](https://github.com/bluealloy/revm/releases/tag/revm-context-v1.0.0-alpha.1) - 2025-02-16 ### Added diff --git a/crates/context/Cargo.toml b/crates/context/Cargo.toml index dac4b0ec73..515afc6c42 100644 --- a/crates/context/Cargo.toml +++ b/crates/context/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-context" description = "Revm context crates" -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/database/CHANGELOG.md b/crates/database/CHANGELOG.md index f4a9363471..4b06d48744 100644 --- a/crates/database/CHANGELOG.md +++ b/crates/database/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0-alpha.2](https://github.com/satyasai69/revm/compare/revm-database-v1.0.0-alpha.1...revm-database-v1.0.0-alpha.2) - 2025-02-18 + +### Other + +- re-export all crates from `revm` (#2088) + ## [1.0.0-alpha.1](https://github.com/bluealloy/revm/releases/tag/revm-database-v1.0.0-alpha.1) - 2025-02-16 ### Added diff --git a/crates/database/Cargo.toml b/crates/database/Cargo.toml index eb4fd739c3..c299e7c01f 100644 --- a/crates/database/Cargo.toml +++ b/crates/database/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-database" description = "Revm Database implementations" -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/handler/CHANGELOG.md b/crates/handler/CHANGELOG.md index fbb0f1fefc..1998bc5f9c 100644 --- a/crates/handler/CHANGELOG.md +++ b/crates/handler/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0-alpha.2](https://github.com/satyasai69/revm/compare/revm-handler-v1.0.0-alpha.1...revm-handler-v1.0.0-alpha.2) - 2025-02-18 + +### Other + +- re-export all crates from `revm` (#2088) + ## [1.0.0-alpha.1](https://github.com/bluealloy/revm/releases/tag/revm-handler-v1.0.0-alpha.1) - 2025-02-16 ### Added diff --git a/crates/handler/Cargo.toml b/crates/handler/Cargo.toml index 3692881fee..7c61981dcb 100644 --- a/crates/handler/Cargo.toml +++ b/crates/handler/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-handler" description = "Revm handler crates" -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/inspector/CHANGELOG.md b/crates/inspector/CHANGELOG.md index fda0e960ac..aeda475833 100644 --- a/crates/inspector/CHANGELOG.md +++ b/crates/inspector/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0-alpha.2](https://github.com/satyasai69/revm/compare/revm-inspector-v1.0.0-alpha.1...revm-inspector-v1.0.0-alpha.2) - 2025-02-18 + +### Other + +- re-export all crates from `revm` (#2088) + ## [1.0.0-alpha.1](https://github.com/bluealloy/revm/releases/tag/revm-inspector-v1.0.0-alpha.1) - 2025-02-16 ### Added diff --git a/crates/inspector/Cargo.toml b/crates/inspector/Cargo.toml index 5c728b079d..5c7ccc9ee8 100644 --- a/crates/inspector/Cargo.toml +++ b/crates/inspector/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-inspector" description = "Revm inspector interface" -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/optimism/CHANGELOG.md b/crates/optimism/CHANGELOG.md index 3422e48744..149dfe3d19 100644 --- a/crates/optimism/CHANGELOG.md +++ b/crates/optimism/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0-alpha.2](https://github.com/satyasai69/revm/compare/revm-optimism-v1.0.0-alpha.1...revm-optimism-v1.0.0-alpha.2) - 2025-02-18 + +### Other + +- updated the following local packages: revm-database, revm-inspector, revm + ## [1.0.0-alpha.1](https://github.com/bluealloy/revm/releases/tag/revm-optimism-v1.0.0-alpha.1) - 2025-02-16 ### Added diff --git a/crates/optimism/Cargo.toml b/crates/optimism/Cargo.toml index a17e179980..b60400bc55 100644 --- a/crates/optimism/Cargo.toml +++ b/crates/optimism/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-optimism" description = "Optimism variant of Revm" -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/revm/CHANGELOG.md b/crates/revm/CHANGELOG.md index f15d5f19ee..e8c6e7d704 100644 --- a/crates/revm/CHANGELOG.md +++ b/crates/revm/CHANGELOG.md @@ -57,6 +57,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [20.0.0-alpha.2](https://github.com/satyasai69/revm/compare/revm-v20.0.0-alpha.1...revm-v20.0.0-alpha.2) - 2025-02-18 + +### Other + +- re-export all crates from `revm` (#2088) + ## [19.5.0](https://github.com/bluealloy/revm/compare/revm-v19.4.0...revm-v19.5.0) - 2025-02-11 ### Fixed diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index 83e5fbe7aa..5260077635 100644 --- a/crates/revm/Cargo.toml +++ b/crates/revm/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm" description = "Revm - Rust Ethereum Virtual Machine" -version = "20.0.0-alpha.1" +version = "20.0.0-alpha.2" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/statetest-types/CHANGELOG.md b/crates/statetest-types/CHANGELOG.md index 4400b071a8..1831439456 100644 --- a/crates/statetest-types/CHANGELOG.md +++ b/crates/statetest-types/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0-alpha.2](https://github.com/satyasai69/revm/compare/revm-statetest-types-v1.0.0-alpha.1...revm-statetest-types-v1.0.0-alpha.2) - 2025-02-18 + +### Other + +- updated the following local packages: revm + ## [1.0.0-alpha.1](https://github.com/bluealloy/revm/releases/tag/revm-statetest-types-v1.0.0-alpha.1) - 2025-02-16 ### Added diff --git a/crates/statetest-types/Cargo.toml b/crates/statetest-types/Cargo.toml index 23c12bd080..26632d9379 100644 --- a/crates/statetest-types/Cargo.toml +++ b/crates/statetest-types/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-statetest-types" description = "Statetest types for revme" -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" authors.workspace = true edition.workspace = true keywords.workspace = true