diff --git a/Cargo.lock b/Cargo.lock index 9393568733..355b610097 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2997,7 +2997,7 @@ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e" [[package]] name = "op-revm" -version = "10.0.0" +version = "11.0.0" dependencies = [ "alloy-primitives", "alloy-sol-types", @@ -3614,7 +3614,7 @@ dependencies = [ [[package]] name = "revm" -version = "29.0.0" +version = "30.0.0" dependencies = [ "revm-bytecode", "revm-context", @@ -3633,7 +3633,7 @@ dependencies = [ [[package]] name = "revm-bytecode" -version = "6.2.2" +version = "6.2.3" dependencies = [ "bitvec", "paste", @@ -3644,7 +3644,7 @@ dependencies = [ [[package]] name = "revm-context" -version = "9.0.2" +version = "10.0.0" dependencies = [ "bitvec", "cfg-if", @@ -3660,7 +3660,7 @@ dependencies = [ [[package]] name = "revm-context-interface" -version = "10.1.0" +version = "11.0.0" dependencies = [ "alloy-eip2930", "alloy-eip7702", @@ -3674,7 +3674,7 @@ dependencies = [ [[package]] name = "revm-database" -version = "7.0.5" +version = "7.0.6" dependencies = [ "alloy-eips", "alloy-provider", @@ -3690,7 +3690,7 @@ dependencies = [ [[package]] name = "revm-database-interface" -version = "7.0.5" +version = "7.0.6" dependencies = [ "auto_impl", "either", @@ -3716,7 +3716,7 @@ dependencies = [ [[package]] name = "revm-handler" -version = "10.0.0" +version = "11.0.0" dependencies = [ "alloy-eip7702", "alloy-provider", @@ -3738,7 +3738,7 @@ dependencies = [ [[package]] name = "revm-inspector" -version = "10.0.0" +version = "10.0.1" dependencies = [ "auto_impl", "either", @@ -3755,7 +3755,7 @@ dependencies = [ [[package]] name = "revm-interpreter" -version = "25.0.2" +version = "26.0.0" dependencies = [ "bincode 2.0.1", "revm-bytecode", @@ -3767,7 +3767,7 @@ dependencies = [ [[package]] name = "revm-precompile" -version = "27.0.0" +version = "28.0.0" dependencies = [ "ark-bls12-381", "ark-bn254", @@ -3796,7 +3796,7 @@ dependencies = [ [[package]] name = "revm-primitives" -version = "20.2.1" +version = "21.0.0" dependencies = [ "alloy-primitives", "num_enum", @@ -3806,7 +3806,7 @@ dependencies = [ [[package]] name = "revm-state" -version = "7.0.5" +version = "7.0.6" dependencies = [ "bitflags", "revm-bytecode", @@ -3816,7 +3816,7 @@ dependencies = [ [[package]] name = "revm-statetest-types" -version = "9.0.2" +version = "10.0.0" dependencies = [ "alloy-eips", "k256", @@ -3828,7 +3828,7 @@ dependencies = [ [[package]] name = "revme" -version = "7.2.2" +version = "7.2.3" dependencies = [ "alloy-rlp", "alloy-sol-types", diff --git a/Cargo.toml b/Cargo.toml index f3e62583a2..d8e83b313a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,20 +41,20 @@ default-members = ["crates/revm"] [workspace.dependencies] # revm -revm = { path = "crates/revm", version = "29.0.0", default-features = false } -primitives = { path = "crates/primitives", package = "revm-primitives", version = "20.2.1", default-features = false } -bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "6.2.2", default-features = false } -database = { path = "crates/database", package = "revm-database", version = "7.0.5", default-features = false } -database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "7.0.5", default-features = false } -state = { path = "crates/state", package = "revm-state", version = "7.0.5", default-features = false } -interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "25.0.2", default-features = false } -inspector = { path = "crates/inspector", package = "revm-inspector", version = "10.0.0", default-features = false } -precompile = { path = "crates/precompile", package = "revm-precompile", version = "27.0.0", default-features = false } -statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "9.0.2", default-features = false } -context = { path = "crates/context", package = "revm-context", version = "9.0.2", default-features = false } -context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "10.1.0", default-features = false } -handler = { path = "crates/handler", package = "revm-handler", version = "10.0.0", default-features = false } -op-revm = { path = "crates/op-revm", package = "op-revm", version = "10.0.0", default-features = false } +revm = { path = "crates/revm", version = "30.0.0", default-features = false } +primitives = { path = "crates/primitives", package = "revm-primitives", version = "21.0.0", default-features = false } +bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "6.2.3", default-features = false } +database = { path = "crates/database", package = "revm-database", version = "7.0.6", default-features = false } +database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "7.0.6", default-features = false } +state = { path = "crates/state", package = "revm-state", version = "7.0.6", default-features = false } +interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "26.0.0", default-features = false } +inspector = { path = "crates/inspector", package = "revm-inspector", version = "10.0.1", default-features = false } +precompile = { path = "crates/precompile", package = "revm-precompile", version = "28.0.0", default-features = false } +statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "10.0.0", default-features = false } +context = { path = "crates/context", package = "revm-context", version = "10.0.0", default-features = false } +context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "11.0.0", default-features = false } +handler = { path = "crates/handler", package = "revm-handler", version = "11.0.0", default-features = false } +op-revm = { path = "crates/op-revm", package = "op-revm", version = "11.0.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 907105d190..8263178c21 100644 --- a/bins/revme/CHANGELOG.md +++ b/bins/revme/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [7.2.3](https://github.com/Troublor/revm/compare/revme-v7.2.2...revme-v7.2.3) - 2025-09-05 + +### Other + +- update Cargo.toml dependencies + ## [7.2.2](https://github.com/bluealloy/revm/compare/revme-v7.2.1...revme-v7.2.2) - 2025-08-23 ### Other diff --git a/bins/revme/Cargo.toml b/bins/revme/Cargo.toml index 1e4b918970..6dc9d6ca3c 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 = "7.2.2" +version = "7.2.3" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/bytecode/CHANGELOG.md b/crates/bytecode/CHANGELOG.md index 5aabf75f0e..088b3a598a 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] +## [6.2.3](https://github.com/Troublor/revm/compare/revm-bytecode-v6.2.2...revm-bytecode-v6.2.3) - 2025-09-05 + +### Other + +- update Cargo.toml dependencies + ## [6.2.2](https://github.com/bluealloy/revm/compare/revm-bytecode-v6.2.1...revm-bytecode-v6.2.2) - 2025-08-23 ### Other diff --git a/crates/bytecode/Cargo.toml b/crates/bytecode/Cargo.toml index b35526c1c0..942e0d231a 100644 --- a/crates/bytecode/Cargo.toml +++ b/crates/bytecode/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-bytecode" description = "EVM Bytecodes" -version = "6.2.2" +version = "6.2.3" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/context/CHANGELOG.md b/crates/context/CHANGELOG.md index 377e80b0c9..78b174db9d 100644 --- a/crates/context/CHANGELOG.md +++ b/crates/context/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [10.0.0](https://github.com/Troublor/revm/compare/revm-context-v9.0.2...revm-context-v10.0.0) - 2025-09-05 + +### Fixed + +- FrameStack mark push/end_init as unsafe ([#2929](https://github.com/Troublor/revm/pull/2929)) +- skip cold load on oog ([#2903](https://github.com/Troublor/revm/pull/2903)) + +### Other + +- *(cleanup)* Remove EIP-7918 related functions and EIP file ([#2925](https://github.com/Troublor/revm/pull/2925)) +- cargo update ([#2930](https://github.com/Troublor/revm/pull/2930)) + ## [9.0.2](https://github.com/bluealloy/revm/compare/revm-context-v9.0.1...revm-context-v9.0.2) - 2025-08-23 ### Fixed diff --git a/crates/context/Cargo.toml b/crates/context/Cargo.toml index 4a1ae51caf..8635584f3a 100644 --- a/crates/context/Cargo.toml +++ b/crates/context/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-context" description = "Revm context crates" -version = "9.0.2" +version = "10.0.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 0c2ec479a3..613b3c2007 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] +## [11.0.0](https://github.com/Troublor/revm/compare/revm-context-interface-v10.1.0...revm-context-interface-v11.0.0) - 2025-09-05 + +### Fixed + +- FrameStack mark push/end_init as unsafe ([#2929](https://github.com/Troublor/revm/pull/2929)) +- skip cold load on oog ([#2903](https://github.com/Troublor/revm/pull/2903)) + +### Other + +- *(cleanup)* Remove EIP-7918 related functions and EIP file ([#2925](https://github.com/Troublor/revm/pull/2925)) +- cargo update ([#2930](https://github.com/Troublor/revm/pull/2930)) + ## [10.1.0](https://github.com/bluealloy/revm/compare/revm-context-interface-v10.0.1...revm-context-interface-v10.1.0) - 2025-08-23 ### Added diff --git a/crates/context/interface/Cargo.toml b/crates/context/interface/Cargo.toml index 5f7aa53fe8..5001b36a9f 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 = "10.1.0" +version = "11.0.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/database/CHANGELOG.md b/crates/database/CHANGELOG.md index a5dcf17337..94c95defb3 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] +## [7.0.6](https://github.com/Troublor/revm/compare/revm-database-v7.0.5...revm-database-v7.0.6) - 2025-09-05 + +### Other + +- update Cargo.toml dependencies + ## [7.0.5](https://github.com/bluealloy/revm/compare/revm-database-v7.0.4...revm-database-v7.0.5) - 2025-08-23 ### Other diff --git a/crates/database/Cargo.toml b/crates/database/Cargo.toml index 099e5c6caf..7bd00fbee1 100644 --- a/crates/database/Cargo.toml +++ b/crates/database/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-database" description = "Revm Database implementations" -version = "7.0.5" +version = "7.0.6" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/database/interface/CHANGELOG.md b/crates/database/interface/CHANGELOG.md index e308ef5bf3..e5ced4cec7 100644 --- a/crates/database/interface/CHANGELOG.md +++ b/crates/database/interface/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [7.0.6](https://github.com/Troublor/revm/compare/revm-database-interface-v7.0.5...revm-database-interface-v7.0.6) - 2025-09-05 + +### Other + +- update Cargo.toml dependencies + ## [7.0.5](https://github.com/bluealloy/revm/compare/revm-database-interface-v7.0.4...revm-database-interface-v7.0.5) - 2025-08-23 ### Other diff --git a/crates/database/interface/Cargo.toml b/crates/database/interface/Cargo.toml index b6e19704e0..a5d1bcfcee 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 = "7.0.5" +version = "7.0.6" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/handler/CHANGELOG.md b/crates/handler/CHANGELOG.md index 8cb93f8356..f4b08d2939 100644 --- a/crates/handler/CHANGELOG.md +++ b/crates/handler/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [11.0.0](https://github.com/Troublor/revm/compare/revm-handler-v10.0.0...revm-handler-v11.0.0) - 2025-09-05 + +### Fixed + +- interpreter_result_mut should return mutable reference +- FrameStack mark push/end_init as unsafe ([#2929](https://github.com/Troublor/revm/pull/2929)) + +### Other + +- cargo update ([#2930](https://github.com/Troublor/revm/pull/2930)) +- *(handler)* provide `&CallInputs`to`PrecompileProvider::run` ([#2921](https://github.com/Troublor/revm/pull/2921)) + ## [10.0.0](https://github.com/bluealloy/revm/compare/revm-handler-v9.0.1...revm-handler-v10.0.0) - 2025-08-23 ### Added diff --git a/crates/handler/Cargo.toml b/crates/handler/Cargo.toml index 7240e796d7..bb38698d13 100644 --- a/crates/handler/Cargo.toml +++ b/crates/handler/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-handler" description = "Revm handler crates" -version = "10.0.0" +version = "11.0.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/inspector/CHANGELOG.md b/crates/inspector/CHANGELOG.md index a05acf056d..6c0e34d2bc 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] +## [10.0.1](https://github.com/Troublor/revm/compare/revm-inspector-v10.0.0...revm-inspector-v10.0.1) - 2025-09-05 + +### Other + +- update Cargo.toml dependencies + ## [10.0.0](https://github.com/bluealloy/revm/compare/revm-inspector-v9.1.0...revm-inspector-v10.0.0) - 2025-08-23 ### Other diff --git a/crates/inspector/Cargo.toml b/crates/inspector/Cargo.toml index 519b30dcc9..63c5334bf7 100644 --- a/crates/inspector/Cargo.toml +++ b/crates/inspector/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-inspector" description = "Revm inspector interface" -version = "10.0.0" +version = "10.0.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/interpreter/CHANGELOG.md b/crates/interpreter/CHANGELOG.md index 0d6561a73a..6427b56efb 100644 --- a/crates/interpreter/CHANGELOG.md +++ b/crates/interpreter/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [26.0.0](https://github.com/Troublor/revm/compare/revm-interpreter-v25.0.2...revm-interpreter-v26.0.0) - 2025-09-05 + +### Fixed + +- skip cold load on oog ([#2903](https://github.com/Troublor/revm/pull/2903)) + +### Other + +- rename SELFDESTRUCT to SELFDESTRUCT_REFUND ([#2937](https://github.com/Troublor/revm/pull/2937)) + ## [25.0.2](https://github.com/bluealloy/revm/compare/revm-interpreter-v25.0.1...revm-interpreter-v25.0.2) - 2025-08-23 ### Fixed diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index c5f3445fb4..68d701dbc9 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 = "25.0.2" +version = "26.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 3486bf1404..629cbf9d87 100644 --- a/crates/op-revm/CHANGELOG.md +++ b/crates/op-revm/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [11.0.0](https://github.com/Troublor/revm/compare/op-revm-v10.0.0...op-revm-v11.0.0) - 2025-09-05 + +### Added + +- [**breaking**] Remove kzg-rs ([#2909](https://github.com/Troublor/revm/pull/2909)) + +### Other + +- *(handler)* provide `&CallInputs`to`PrecompileProvider::run` ([#2921](https://github.com/Troublor/revm/pull/2921)) + ## [10.0.0](https://github.com/bluealloy/revm/compare/op-revm-v9.0.1...op-revm-v10.0.0) - 2025-08-23 ### Added diff --git a/crates/op-revm/Cargo.toml b/crates/op-revm/Cargo.toml index 298c277590..1233e8b820 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 = "10.0.0" +version = "11.0.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/precompile/CHANGELOG.md b/crates/precompile/CHANGELOG.md index e58f0a4933..71221221ea 100644 --- a/crates/precompile/CHANGELOG.md +++ b/crates/precompile/CHANGELOG.md @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [28.0.0](https://github.com/Troublor/revm/compare/revm-precompile-v27.0.0...revm-precompile-v28.0.0) - 2025-09-05 + +### Added + +- [**breaking**] Remove kzg-rs ([#2909](https://github.com/Troublor/revm/pull/2909)) + +### Other + +- add amsterdam in spec id ([#2934](https://github.com/Troublor/revm/pull/2934)) +- cargo update ([#2930](https://github.com/Troublor/revm/pull/2930)) +- *(precompile)* add new specific `PrecompileError` variants ([#2907](https://github.com/Troublor/revm/pull/2907)) +- add Precompil::into_precompile ([#2913](https://github.com/Troublor/revm/pull/2913)) + ## [27.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v26.0.1...revm-precompile-v27.0.0) - 2025-08-23 ### Added diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index aec322fb43..5af65b1469 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 = "27.0.0" +version = "28.0.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index 9b8105eae8..d92abe9c54 100644 --- a/crates/primitives/CHANGELOG.md +++ b/crates/primitives/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [21.0.0](https://github.com/Troublor/revm/compare/revm-primitives-v20.2.1...revm-primitives-v21.0.0) - 2025-09-05 + +### Other + +- add amsterdam in spec id ([#2934](https://github.com/Troublor/revm/pull/2934)) +- *(cleanup)* Remove EIP-7918 related functions and EIP file ([#2925](https://github.com/Troublor/revm/pull/2925)) +- cargo update ([#2930](https://github.com/Troublor/revm/pull/2930)) + ## [20.2.1](https://github.com/bluealloy/revm/compare/revm-primitives-v20.2.0...revm-primitives-v20.2.1) - 2025-08-12 ### Other diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 66df0e4e54..8607eb7172 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-primitives" description = "Revm primitives types" -version = "20.2.1" +version = "21.0.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/revm/CHANGELOG.md b/crates/revm/CHANGELOG.md index cd72a23e7c..4811a2e7ff 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] +## [30.0.0](https://github.com/Troublor/revm/compare/revm-v29.0.0...revm-v30.0.0) - 2025-09-05 + +### Added + +- [**breaking**] Remove kzg-rs ([#2909](https://github.com/Troublor/revm/pull/2909)) + ## [29.0.0](https://github.com/bluealloy/revm/compare/revm-v28.0.1...revm-v29.0.0) - 2025-08-23 ### Other diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index b3d92d53ce..a3f4274c01 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 = "29.0.0" +version = "30.0.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/state/CHANGELOG.md b/crates/state/CHANGELOG.md index 94d8d0adff..397f188ba5 100644 --- a/crates/state/CHANGELOG.md +++ b/crates/state/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [7.0.6](https://github.com/Troublor/revm/compare/revm-state-v7.0.5...revm-state-v7.0.6) - 2025-09-05 + +### Fixed + +- skip cold load on oog ([#2903](https://github.com/Troublor/revm/pull/2903)) + +### Other + +- use primitives::HashMap default ([#2916](https://github.com/Troublor/revm/pull/2916)) + ## [7.0.5](https://github.com/bluealloy/revm/compare/revm-state-v7.0.4...revm-state-v7.0.5) - 2025-08-23 ### Other diff --git a/crates/state/Cargo.toml b/crates/state/Cargo.toml index a9f930af7d..739ba9bbda 100644 --- a/crates/state/Cargo.toml +++ b/crates/state/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-state" description = "Revm state types" -version = "7.0.5" +version = "7.0.6" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/statetest-types/CHANGELOG.md b/crates/statetest-types/CHANGELOG.md index c89d542d84..c5fadc8b20 100644 --- a/crates/statetest-types/CHANGELOG.md +++ b/crates/statetest-types/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [10.0.0](https://github.com/Troublor/revm/compare/revm-statetest-types-v9.0.2...revm-statetest-types-v10.0.0) - 2025-09-05 + +### Other + +- remove parent blob gas used and excess ([#2933](https://github.com/Troublor/revm/pull/2933)) +- *(cleanup)* Remove EIP-7918 related functions and EIP file ([#2925](https://github.com/Troublor/revm/pull/2925)) + ## [9.0.2](https://github.com/bluealloy/revm/compare/revm-statetest-types-v9.0.1...revm-statetest-types-v9.0.2) - 2025-08-23 ### Other diff --git a/crates/statetest-types/Cargo.toml b/crates/statetest-types/Cargo.toml index c5552b994b..2dbeeb6591 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 = "9.0.2" +version = "10.0.0" authors.workspace = true edition.workspace = true keywords.workspace = true