From 3501a8caf9b25fea8ccf6f731c3b47ef8999ef95 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 17 Dec 2025 23:30:12 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 30 +++++++++++++------------- Cargo.toml | 28 ++++++++++++------------ bins/revme/CHANGELOG.md | 15 +++++++++++++ bins/revme/Cargo.toml | 2 +- crates/bytecode/CHANGELOG.md | 6 ++++++ crates/bytecode/Cargo.toml | 2 +- crates/context/CHANGELOG.md | 17 +++++++++++++++ crates/context/Cargo.toml | 2 +- crates/context/interface/CHANGELOG.md | 12 +++++++++++ crates/context/interface/Cargo.toml | 2 +- crates/database/CHANGELOG.md | 13 +++++++++++ crates/database/Cargo.toml | 2 +- crates/database/interface/CHANGELOG.md | 13 +++++++++++ crates/database/interface/Cargo.toml | 2 +- crates/handler/CHANGELOG.md | 20 +++++++++++++++++ crates/handler/Cargo.toml | 2 +- crates/inspector/CHANGELOG.md | 11 ++++++++++ crates/inspector/Cargo.toml | 2 +- crates/interpreter/CHANGELOG.md | 16 ++++++++++++++ crates/interpreter/Cargo.toml | 2 +- crates/op-revm/CHANGELOG.md | 12 +++++++++++ crates/op-revm/Cargo.toml | 2 +- crates/precompile/CHANGELOG.md | 9 ++++++++ crates/precompile/Cargo.toml | 2 +- crates/primitives/CHANGELOG.md | 10 +++++++++ crates/primitives/Cargo.toml | 2 +- crates/revm/CHANGELOG.md | 6 ++++++ crates/revm/Cargo.toml | 2 +- crates/state/CHANGELOG.md | 7 ++++++ crates/state/Cargo.toml | 2 +- crates/statetest-types/CHANGELOG.md | 10 +++++++++ crates/statetest-types/Cargo.toml | 2 +- 32 files changed, 221 insertions(+), 44 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fa8cef2155..a7fb9e015b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2922,7 +2922,7 @@ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e" [[package]] name = "op-revm" -version = "14.1.0" +version = "14.2.0" dependencies = [ "alloy-primitives", "alloy-sol-types", @@ -3533,7 +3533,7 @@ dependencies = [ [[package]] name = "revm" -version = "33.1.0" +version = "33.1.1" dependencies = [ "revm-bytecode", "revm-context", @@ -3552,7 +3552,7 @@ dependencies = [ [[package]] name = "revm-bytecode" -version = "7.1.1" +version = "7.1.2" dependencies = [ "bitvec", "paste", @@ -3564,7 +3564,7 @@ dependencies = [ [[package]] name = "revm-context" -version = "12.1.0" +version = "12.2.0" dependencies = [ "bitvec", "cfg-if", @@ -3580,7 +3580,7 @@ dependencies = [ [[package]] name = "revm-context-interface" -version = "13.1.0" +version = "14.0.0" dependencies = [ "alloy-eip2930", "alloy-eip7702", @@ -3594,7 +3594,7 @@ dependencies = [ [[package]] name = "revm-database" -version = "9.0.6" +version = "10.0.0" dependencies = [ "alloy-eips", "alloy-provider", @@ -3610,7 +3610,7 @@ dependencies = [ [[package]] name = "revm-database-interface" -version = "8.0.5" +version = "9.0.0" dependencies = [ "auto_impl", "either", @@ -3637,7 +3637,7 @@ dependencies = [ [[package]] name = "revm-handler" -version = "14.1.0" +version = "15.0.0" dependencies = [ "alloy-provider", "alloy-signer", @@ -3658,7 +3658,7 @@ dependencies = [ [[package]] name = "revm-inspector" -version = "14.1.0" +version = "14.2.0" dependencies = [ "auto_impl", "either", @@ -3675,7 +3675,7 @@ dependencies = [ [[package]] name = "revm-interpreter" -version = "31.1.0" +version = "32.0.0" dependencies = [ "revm-bytecode", "revm-context-interface", @@ -3687,7 +3687,7 @@ dependencies = [ [[package]] name = "revm-precompile" -version = "31.0.0" +version = "31.0.1" dependencies = [ "ark-bls12-381", "ark-bn254", @@ -3715,7 +3715,7 @@ dependencies = [ [[package]] name = "revm-primitives" -version = "21.0.2" +version = "21.1.0" dependencies = [ "alloy-primitives", "num_enum", @@ -3725,7 +3725,7 @@ dependencies = [ [[package]] name = "revm-state" -version = "8.1.1" +version = "8.1.2" dependencies = [ "bitflags", "revm-bytecode", @@ -3735,7 +3735,7 @@ dependencies = [ [[package]] name = "revm-statetest-types" -version = "13.1.0" +version = "13.1.1" dependencies = [ "alloy-eips", "k256", @@ -3747,7 +3747,7 @@ dependencies = [ [[package]] name = "revme" -version = "10.0.2" +version = "10.1.0" dependencies = [ "alloy-rlp", "alloy-sol-types", diff --git a/Cargo.toml b/Cargo.toml index f724c01f4f..fdb328b27f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,20 +41,20 @@ default-members = ["crates/revm"] [workspace.dependencies] # revm -revm = { path = "crates/revm", version = "33.1.0", default-features = false } -primitives = { path = "crates/primitives", package = "revm-primitives", version = "21.0.2", default-features = false } -bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "7.1.1", default-features = false } -database = { path = "crates/database", package = "revm-database", version = "9.0.6", default-features = false } -database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "8.0.5", default-features = false } -state = { path = "crates/state", package = "revm-state", version = "8.1.1", default-features = false } -interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "31.1.0", default-features = false } -inspector = { path = "crates/inspector", package = "revm-inspector", version = "14.1.0", default-features = false } -precompile = { path = "crates/precompile", package = "revm-precompile", version = "31.0.0", default-features = false } -statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "13.1.0", default-features = false } -context = { path = "crates/context", package = "revm-context", version = "12.1.0", default-features = false } -context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "13.1.0", default-features = false } -handler = { path = "crates/handler", package = "revm-handler", version = "14.1.0", default-features = false } -op-revm = { path = "crates/op-revm", package = "op-revm", version = "14.1.0", default-features = false } +revm = { path = "crates/revm", version = "33.1.1", default-features = false } +primitives = { path = "crates/primitives", package = "revm-primitives", version = "21.1.0", default-features = false } +bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "7.1.2", default-features = false } +database = { path = "crates/database", package = "revm-database", version = "10.0.0", default-features = false } +database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "9.0.0", default-features = false } +state = { path = "crates/state", package = "revm-state", version = "8.1.2", default-features = false } +interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "32.0.0", default-features = false } +inspector = { path = "crates/inspector", package = "revm-inspector", version = "14.2.0", default-features = false } +precompile = { path = "crates/precompile", package = "revm-precompile", version = "31.0.1", default-features = false } +statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "13.1.1", default-features = false } +context = { path = "crates/context", package = "revm-context", version = "12.2.0", default-features = false } +context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "14.0.0", default-features = false } +handler = { path = "crates/handler", package = "revm-handler", version = "15.0.0", default-features = false } +op-revm = { path = "crates/op-revm", package = "op-revm", version = "14.2.0", default-features = false } ee-tests = { path = "crates/ee-tests", package = "revm-ee-tests", version = "0.1.0", default-features = false } # alloy diff --git a/bins/revme/CHANGELOG.md b/bins/revme/CHANGELOG.md index eb15baf5c0..c61bcd2dd5 100644 --- a/bins/revme/CHANGELOG.md +++ b/bins/revme/CHANGELOG.md @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [10.1.0](https://github.com/meyer9/revm/compare/revme-v10.0.2...revme-v10.1.0) - 2025-12-17 + +### Added + +- DatabaseCommitExt + increment_balances ([#3195](https://github.com/meyer9/revm/pull/3195)) +- sort accounts by address in blockchaintest output ([#3182](https://github.com/meyer9/revm/pull/3182)) + +### Fixed + +- *(statetest)* use spec-aware blob base fee update fraction ([#3210](https://github.com/meyer9/revm/pull/3210)) + +### Other + +- *(fmt)* merge all imports ([#3184](https://github.com/meyer9/revm/pull/3184)) + ## [10.0.2](https://github.com/bluealloy/revm/compare/revme-v10.0.0...revme-v10.0.2) - 2025-11-14 ### Other diff --git a/bins/revme/Cargo.toml b/bins/revme/Cargo.toml index fd6296161b..5a230ecb72 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 = "10.0.2" +version = "10.1.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/bytecode/CHANGELOG.md b/crates/bytecode/CHANGELOG.md index 4dc5acdcca..c212c5a7e6 100644 --- a/crates/bytecode/CHANGELOG.md +++ b/crates/bytecode/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [7.1.2](https://github.com/meyer9/revm/compare/revm-bytecode-v7.1.1...revm-bytecode-v7.1.2) - 2025-12-17 + +### Other + +- updated the following local packages: revm-primitives + ## [7.1.1](https://github.com/bluealloy/revm/compare/revm-bytecode-v7.1.0...revm-bytecode-v7.1.1) - 2025-11-07 ### Other diff --git a/crates/bytecode/Cargo.toml b/crates/bytecode/Cargo.toml index 5312108ef8..7abd0ae9f3 100644 --- a/crates/bytecode/Cargo.toml +++ b/crates/bytecode/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-bytecode" description = "EVM Bytecodes" -version = "7.1.1" +version = "7.1.2" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/context/CHANGELOG.md b/crates/context/CHANGELOG.md index e1ee788814..de2365c8a7 100644 --- a/crates/context/CHANGELOG.md +++ b/crates/context/CHANGELOG.md @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [12.2.0](https://github.com/meyer9/revm/compare/revm-context-v12.1.0...revm-context-v12.2.0) - 2025-12-17 + +### Added + +- Gas params ([#3132](https://github.com/meyer9/revm/pull/3132)) +- JournaledAccount sload/sstore ([#3201](https://github.com/meyer9/revm/pull/3201)) +- Restrict Database::Error. JournaledAccountTr ([#3199](https://github.com/meyer9/revm/pull/3199)) + +### Fixed + +- set transaction_id on new account ([#3204](https://github.com/meyer9/revm/pull/3204)) + +### Other + +- *(cleanup)* remove unused duplicate ContextSetters trait in context crate ([#3225](https://github.com/meyer9/revm/pull/3225)) +- *(fmt)* merge all imports ([#3184](https://github.com/meyer9/revm/pull/3184)) + ## [12.1.0](https://github.com/bluealloy/revm/compare/revm-context-v12.0.0...revm-context-v12.1.0) - 2025-11-14 ### Added diff --git a/crates/context/Cargo.toml b/crates/context/Cargo.toml index 26bce81389..7417fd3683 100644 --- a/crates/context/Cargo.toml +++ b/crates/context/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-context" description = "Revm context crates" -version = "12.1.0" +version = "12.2.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/context/interface/CHANGELOG.md b/crates/context/interface/CHANGELOG.md index 380b0490df..d98f5c4c80 100644 --- a/crates/context/interface/CHANGELOG.md +++ b/crates/context/interface/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [14.0.0](https://github.com/meyer9/revm/compare/revm-context-interface-v13.1.0...revm-context-interface-v14.0.0) - 2025-12-17 + +### Added + +- Gas params ([#3132](https://github.com/meyer9/revm/pull/3132)) +- JournaledAccount sload/sstore ([#3201](https://github.com/meyer9/revm/pull/3201)) +- Restrict Database::Error. JournaledAccountTr ([#3199](https://github.com/meyer9/revm/pull/3199)) + +### Other + +- *(fmt)* merge all imports ([#3184](https://github.com/meyer9/revm/pull/3184)) + ## [13.1.0](https://github.com/bluealloy/revm/compare/revm-context-interface-v13.0.0...revm-context-interface-v13.1.0) - 2025-11-14 ### Added diff --git a/crates/context/interface/Cargo.toml b/crates/context/interface/Cargo.toml index 258df96e20..2a71aba3c4 100644 --- a/crates/context/interface/Cargo.toml +++ b/crates/context/interface/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-context-interface" description = "Revm context interface crates" -version = "13.1.0" +version = "14.0.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/database/CHANGELOG.md b/crates/database/CHANGELOG.md index bfa738a90b..6e0e52a6b1 100644 --- a/crates/database/CHANGELOG.md +++ b/crates/database/CHANGELOG.md @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [10.0.0](https://github.com/meyer9/revm/compare/revm-database-v9.0.6...revm-database-v10.0.0) - 2025-12-17 + +### Added + +- DatabaseCommitExt::drain_balances ([#3205](https://github.com/meyer9/revm/pull/3205)) +- DatabaseCommitExt + increment_balances ([#3195](https://github.com/meyer9/revm/pull/3195)) +- DatabaseCommit::commit_iter ([#3197](https://github.com/meyer9/revm/pull/3197)) +- Restrict Database::Error. JournaledAccountTr ([#3199](https://github.com/meyer9/revm/pull/3199)) + +### Other + +- optimize vector initialization with size hints in state and precompile modules ([#3191](https://github.com/meyer9/revm/pull/3191)) + ## [9.0.6](https://github.com/bluealloy/revm/compare/revm-database-v9.0.5...revm-database-v9.0.6) - 2025-11-14 ### Fixed diff --git a/crates/database/Cargo.toml b/crates/database/Cargo.toml index 6481ebaaaa..f73ec362f3 100644 --- a/crates/database/Cargo.toml +++ b/crates/database/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-database" description = "Revm Database implementations" -version = "9.0.6" +version = "10.0.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/database/interface/CHANGELOG.md b/crates/database/interface/CHANGELOG.md index 7568716ac2..9b47feb409 100644 --- a/crates/database/interface/CHANGELOG.md +++ b/crates/database/interface/CHANGELOG.md @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [9.0.0](https://github.com/meyer9/revm/compare/revm-database-interface-v8.0.5...revm-database-interface-v9.0.0) - 2025-12-17 + +### Added + +- DatabaseCommitExt::drain_balances ([#3205](https://github.com/meyer9/revm/pull/3205)) +- DatabaseCommitExt + increment_balances ([#3195](https://github.com/meyer9/revm/pull/3195)) +- DatabaseCommit::commit_iter ([#3197](https://github.com/meyer9/revm/pull/3197)) +- Restrict Database::Error. JournaledAccountTr ([#3199](https://github.com/meyer9/revm/pull/3199)) + +### Other + +- *(fmt)* merge all imports ([#3184](https://github.com/meyer9/revm/pull/3184)) + ## [8.0.5](https://github.com/bluealloy/revm/compare/revm-database-interface-v8.0.4...revm-database-interface-v8.0.5) - 2025-11-07 ### Other diff --git a/crates/database/interface/Cargo.toml b/crates/database/interface/Cargo.toml index d668da62f5..133e05c119 100644 --- a/crates/database/interface/Cargo.toml +++ b/crates/database/interface/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-database-interface" description = "Revm Database interface" -version = "8.0.5" +version = "9.0.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/handler/CHANGELOG.md b/crates/handler/CHANGELOG.md index 792f6dabd2..0f25f04452 100644 --- a/crates/handler/CHANGELOG.md +++ b/crates/handler/CHANGELOG.md @@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [15.0.0](https://github.com/meyer9/revm/compare/revm-handler-v14.1.0...revm-handler-v15.0.0) - 2025-12-17 + +### Added + +- Gas params ([#3132](https://github.com/meyer9/revm/pull/3132)) +- *(create)* Implement Cache for CreateInputs::created_address ([#3218](https://github.com/meyer9/revm/pull/3218)) +- JournaledAccount sload/sstore ([#3201](https://github.com/meyer9/revm/pull/3201)) +- Restrict Database::Error. JournaledAccountTr ([#3199](https://github.com/meyer9/revm/pull/3199)) + +### Fixed + +- *(create)* Fix CreateInputs::created_address Cache invalidation ([#3222](https://github.com/meyer9/revm/pull/3222)) + +### Other + +- *(clippy)* remove unused imports ([#3227](https://github.com/meyer9/revm/pull/3227)) +- optimize vector initialization using size hints ([#3200](https://github.com/meyer9/revm/pull/3200)) +- apply_auth_list helper fn ([#3187](https://github.com/meyer9/revm/pull/3187)) +- *(fmt)* merge all imports ([#3184](https://github.com/meyer9/revm/pull/3184)) + ## [14.1.0](https://github.com/bluealloy/revm/compare/revm-handler-v14.0.0...revm-handler-v14.1.0) - 2025-11-14 ### Other diff --git a/crates/handler/Cargo.toml b/crates/handler/Cargo.toml index 3631a310fa..99396c4ab1 100644 --- a/crates/handler/Cargo.toml +++ b/crates/handler/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-handler" description = "Revm handler crates" -version = "14.1.0" +version = "15.0.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/inspector/CHANGELOG.md b/crates/inspector/CHANGELOG.md index 355f7530f5..4759a8226a 100644 --- a/crates/inspector/CHANGELOG.md +++ b/crates/inspector/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [14.2.0](https://github.com/meyer9/revm/compare/revm-inspector-v14.1.0...revm-inspector-v14.2.0) - 2025-12-17 + +### Added + +- Gas params ([#3132](https://github.com/meyer9/revm/pull/3132)) + +### Other + +- replace HashMap with fixed-size array for opcode counts in CountInspector ([#3203](https://github.com/meyer9/revm/pull/3203)) +- *(fmt)* merge all imports ([#3184](https://github.com/meyer9/revm/pull/3184)) + ## [14.1.0](https://github.com/bluealloy/revm/compare/revm-inspector-v14.0.0...revm-inspector-v14.1.0) - 2025-11-14 ### Other diff --git a/crates/inspector/Cargo.toml b/crates/inspector/Cargo.toml index c0834aa95b..cac3cb711e 100644 --- a/crates/inspector/Cargo.toml +++ b/crates/inspector/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-inspector" description = "Revm inspector interface" -version = "14.1.0" +version = "14.2.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/interpreter/CHANGELOG.md b/crates/interpreter/CHANGELOG.md index f9bcf99999..e2a6ccc98a 100644 --- a/crates/interpreter/CHANGELOG.md +++ b/crates/interpreter/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [32.0.0](https://github.com/meyer9/revm/compare/revm-interpreter-v31.1.0...revm-interpreter-v32.0.0) - 2025-12-17 + +### Added + +- Gas params ([#3132](https://github.com/meyer9/revm/pull/3132)) +- *(create)* Implement Cache for CreateInputs::created_address ([#3218](https://github.com/meyer9/revm/pull/3218)) + +### Fixed + +- *(create)* Fix CreateInputs::created_address Cache invalidation ([#3222](https://github.com/meyer9/revm/pull/3222)) + +### Other + +- *(clippy)* remove unused imports ([#3227](https://github.com/meyer9/revm/pull/3227)) +- *(fmt)* merge all imports ([#3184](https://github.com/meyer9/revm/pull/3184)) + ## [31.1.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v31.0.0...revm-interpreter-v31.1.0) - 2025-11-14 ### Fixed diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index 83de6d17ea..7ddfc962e4 100644 --- a/crates/interpreter/Cargo.toml +++ b/crates/interpreter/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-interpreter" description = "Revm Interpreter that executes bytecode." -version = "31.1.0" +version = "32.0.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/op-revm/CHANGELOG.md b/crates/op-revm/CHANGELOG.md index e06472495d..5a0466daf7 100644 --- a/crates/op-revm/CHANGELOG.md +++ b/crates/op-revm/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [14.2.0](https://github.com/meyer9/revm/compare/op-revm-v14.1.0...op-revm-v14.2.0) - 2025-12-17 + +### Added + +- early return if the l1 fee scalar is zero ([#3213](https://github.com/meyer9/revm/pull/3213)) +- Restrict Database::Error. JournaledAccountTr ([#3199](https://github.com/meyer9/revm/pull/3199)) + +### Other + +- Remove redundant tx fetch in Optimism handler gas accounting ([#3220](https://github.com/meyer9/revm/pull/3220)) +- *(fmt)* merge all imports ([#3184](https://github.com/meyer9/revm/pull/3184)) + ## [14.1.0](https://github.com/bluealloy/revm/compare/op-revm-v14.0.0...op-revm-v14.1.0) - 2025-11-14 ### Fixed diff --git a/crates/op-revm/Cargo.toml b/crates/op-revm/Cargo.toml index 767d0f7cf2..5564f315da 100644 --- a/crates/op-revm/Cargo.toml +++ b/crates/op-revm/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "op-revm" description = "Optimism variant of Revm" -version = "14.1.0" +version = "14.2.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/precompile/CHANGELOG.md b/crates/precompile/CHANGELOG.md index 0b8341c99a..5e15134e0d 100644 --- a/crates/precompile/CHANGELOG.md +++ b/crates/precompile/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [31.0.1](https://github.com/meyer9/revm/compare/revm-precompile-v31.0.0...revm-precompile-v31.0.1) - 2025-12-17 + +### Other + +- optimize vector initialization using size hints ([#3200](https://github.com/meyer9/revm/pull/3200)) +- optimize precompile `extend()` ([#3192](https://github.com/meyer9/revm/pull/3192)) +- optimize vector initialization with size hints in state and precompile modules ([#3191](https://github.com/meyer9/revm/pull/3191)) +- *(fmt)* merge all imports ([#3184](https://github.com/meyer9/revm/pull/3184)) + ## [31.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v29.0.1...revm-precompile-v31.0.0) - 2025-11-10 ### Added diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index b17b1b3dba..c3d7b74b61 100644 --- a/crates/precompile/Cargo.toml +++ b/crates/precompile/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-precompile" description = "Revm Precompiles - Ethereum compatible precompiled contracts" -version = "31.0.0" +version = "31.0.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index 2a39fc1765..06a7234330 100644 --- a/crates/primitives/CHANGELOG.md +++ b/crates/primitives/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [21.1.0](https://github.com/meyer9/revm/compare/revm-primitives-v21.0.2...revm-primitives-v21.1.0) - 2025-12-17 + +### Added + +- JournaledAccount sload/sstore ([#3201](https://github.com/meyer9/revm/pull/3201)) + +### Other + +- *(fmt)* merge all imports ([#3184](https://github.com/meyer9/revm/pull/3184)) + ## [21.0.2](https://github.com/bluealloy/revm/compare/revm-primitives-v21.0.1...revm-primitives-v21.0.2) - 2025-11-07 ### Other diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 044b3eb21c..6ce849b611 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-primitives" description = "Revm primitives types" -version = "21.0.2" +version = "21.1.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/revm/CHANGELOG.md b/crates/revm/CHANGELOG.md index 4b51b21947..d18a87f264 100644 --- a/crates/revm/CHANGELOG.md +++ b/crates/revm/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [33.1.1](https://github.com/meyer9/revm/compare/revm-v33.1.0...revm-v33.1.1) - 2025-12-17 + +### Other + +- *(fmt)* merge all imports ([#3184](https://github.com/meyer9/revm/pull/3184)) + ## [33.1.0](https://github.com/bluealloy/revm/compare/revm-v33.0.0...revm-v33.1.0) - 2025-11-14 ### Fixed diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index c2c5ef0aed..7e28b459eb 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 = "33.1.0" +version = "33.1.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/state/CHANGELOG.md b/crates/state/CHANGELOG.md index 63e4abe9c5..ad746e54a4 100644 --- a/crates/state/CHANGELOG.md +++ b/crates/state/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [8.1.2](https://github.com/meyer9/revm/compare/revm-state-v8.1.1...revm-state-v8.1.2) - 2025-12-17 + +### Other + +- deduplicate local/global flags setup ([#3190](https://github.com/meyer9/revm/pull/3190)) +- *(fmt)* merge all imports ([#3184](https://github.com/meyer9/revm/pull/3184)) + ## [8.1.1](https://github.com/bluealloy/revm/compare/revm-state-v8.1.0...revm-state-v8.1.1) - 2025-11-07 ### Other diff --git a/crates/state/Cargo.toml b/crates/state/Cargo.toml index ff57aa2044..913b737744 100644 --- a/crates/state/Cargo.toml +++ b/crates/state/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-state" description = "Revm state types" -version = "8.1.1" +version = "8.1.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 32bf941789..8ad0b0f674 100644 --- a/crates/statetest-types/CHANGELOG.md +++ b/crates/statetest-types/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [13.1.1](https://github.com/meyer9/revm/compare/revm-statetest-types-v13.1.0...revm-statetest-types-v13.1.1) - 2025-12-17 + +### Fixed + +- *(statetest)* use spec-aware blob base fee update fraction ([#3210](https://github.com/meyer9/revm/pull/3210)) + +### Other + +- *(fmt)* merge all imports ([#3184](https://github.com/meyer9/revm/pull/3184)) + ## [13.1.0](https://github.com/bluealloy/revm/compare/revm-statetest-types-v13.0.0...revm-statetest-types-v13.1.0) - 2025-11-14 ### Other diff --git a/crates/statetest-types/Cargo.toml b/crates/statetest-types/Cargo.toml index 61eb508318..6353e44b78 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 = "13.1.0" +version = "13.1.1" authors.workspace = true edition.workspace = true keywords.workspace = true