diff --git a/Cargo.lock b/Cargo.lock index 8d57c34cb5..576ae8f74f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2754,7 +2754,7 @@ checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9" [[package]] name = "op-revm" -version = "1.0.0-alpha.5" +version = "1.0.0-alpha.6" dependencies = [ "alloy-sol-types", "anyhow", @@ -3431,7 +3431,7 @@ dependencies = [ [[package]] name = "revm" -version = "20.0.0-alpha.6" +version = "20.0.0-alpha.7" dependencies = [ "revm-bytecode", "revm-context", @@ -3448,7 +3448,7 @@ dependencies = [ [[package]] name = "revm-bytecode" -version = "1.0.0-alpha.4" +version = "1.0.0-alpha.5" dependencies = [ "bitvec", "paste", @@ -3459,7 +3459,7 @@ dependencies = [ [[package]] name = "revm-context" -version = "1.0.0-alpha.5" +version = "1.0.0-alpha.6" dependencies = [ "cfg-if", "derive-where", @@ -3474,7 +3474,7 @@ dependencies = [ [[package]] name = "revm-context-interface" -version = "1.0.0-alpha.5" +version = "1.0.0-alpha.6" dependencies = [ "alloy-eip2930", "alloy-eip7702", @@ -3487,7 +3487,7 @@ dependencies = [ [[package]] name = "revm-database" -version = "1.0.0-alpha.4" +version = "1.0.0-alpha.5" dependencies = [ "alloy-eips", "alloy-provider", @@ -3508,7 +3508,7 @@ dependencies = [ [[package]] name = "revm-database-interface" -version = "1.0.0-alpha.4" +version = "1.0.0-alpha.5" dependencies = [ "alloy-sol-types", "anyhow", @@ -3523,7 +3523,7 @@ dependencies = [ [[package]] name = "revm-handler" -version = "1.0.0-alpha.6" +version = "1.0.0-alpha.7" dependencies = [ "alloy-eip7702", "alloy-provider", @@ -3544,7 +3544,7 @@ dependencies = [ [[package]] name = "revm-inspector" -version = "1.0.0-alpha.6" +version = "1.0.0-alpha.7" dependencies = [ "auto_impl", "revm-context", @@ -3561,7 +3561,7 @@ dependencies = [ [[package]] name = "revm-interpreter" -version = "16.0.0-alpha.6" +version = "16.0.0-alpha.7" dependencies = [ "bincode", "revm-bytecode", @@ -3574,7 +3574,7 @@ dependencies = [ [[package]] name = "revm-precompile" -version = "17.0.0-alpha.6" +version = "17.0.0-alpha.7" dependencies = [ "aurora-engine-modexp", "blst", @@ -3602,7 +3602,7 @@ dependencies = [ [[package]] name = "revm-primitives" -version = "16.0.0-alpha.4" +version = "16.0.0-alpha.5" dependencies = [ "alloy-primitives", "enumn", @@ -3611,7 +3611,7 @@ dependencies = [ [[package]] name = "revm-state" -version = "1.0.0-alpha.4" +version = "1.0.0-alpha.5" dependencies = [ "bitflags", "revm-bytecode", @@ -3630,7 +3630,7 @@ dependencies = [ [[package]] name = "revme" -version = "3.0.0-alpha.6" +version = "3.0.0-alpha.7" dependencies = [ "alloy-rlp", "alloy-sol-types", diff --git a/Cargo.toml b/Cargo.toml index 2d51c0d99f..69fe52fc3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,19 +39,19 @@ default-members = ["crates/revm"] [workspace.dependencies] # revm -revm = { path = "crates/revm", version = "20.0.0-alpha.6", default-features = false } -primitives = { path = "crates/primitives", package = "revm-primitives", version = "16.0.0-alpha.4", default-features = false } -bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "1.0.0-alpha.4", default-features = false } -database = { path = "crates/database", package = "revm-database", version = "1.0.0-alpha.4", default-features = false } -database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "1.0.0-alpha.4", default-features = false } -state = { path = "crates/state", package = "revm-state", version = "1.0.0-alpha.4", default-features = false } -interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "16.0.0-alpha.6", default-features = false } -inspector = { path = "crates/inspector", package = "revm-inspector", version = "1.0.0-alpha.6", default-features = false } -precompile = { path = "crates/precompile", package = "revm-precompile", version = "17.0.0-alpha.6", default-features = false } +revm = { path = "crates/revm", version = "20.0.0-alpha.7", default-features = false } +primitives = { path = "crates/primitives", package = "revm-primitives", version = "16.0.0-alpha.5", default-features = false } +bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "1.0.0-alpha.5", default-features = false } +database = { path = "crates/database", package = "revm-database", version = "1.0.0-alpha.5", default-features = false } +database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "1.0.0-alpha.5", default-features = false } +state = { path = "crates/state", package = "revm-state", version = "1.0.0-alpha.5", default-features = false } +interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "16.0.0-alpha.7", default-features = false } +inspector = { path = "crates/inspector", package = "revm-inspector", version = "1.0.0-alpha.7", default-features = false } +precompile = { path = "crates/precompile", package = "revm-precompile", version = "17.0.0-alpha.7", default-features = false } statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "1.0.0-alpha.5", default-features = false } -context = { path = "crates/context", package = "revm-context", version = "1.0.0-alpha.5", default-features = false } -context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "1.0.0-alpha.5", default-features = false } -handler = { path = "crates/handler", package = "revm-handler", version = "1.0.0-alpha.6", default-features = false } +context = { path = "crates/context", package = "revm-context", version = "1.0.0-alpha.6", default-features = false } +context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "1.0.0-alpha.6", default-features = false } +handler = { path = "crates/handler", package = "revm-handler", version = "1.0.0-alpha.7", 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 5c1faa6aaf..0ccfaf404e 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.7](https://github.com/bluealloy/revm/compare/revme-v3.0.0-alpha.6...revme-v3.0.0-alpha.7) - 2025-03-17 + +### Other + +- *(revme)* remove deprecated #[clap] attribute + ## [3.0.0-alpha.6](https://github.com/bluealloy/revm/compare/revme-v3.0.0-alpha.5...revme-v3.0.0-alpha.6) - 2025-03-16 ### Other diff --git a/bins/revme/Cargo.toml b/bins/revme/Cargo.toml index 2e6939c1bf..181b6380c6 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.6" +version = "3.0.0-alpha.7" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/bytecode/CHANGELOG.md b/crates/bytecode/CHANGELOG.md index 4bd7cd509c..2274f23571 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] +## [1.0.0-alpha.5](https://github.com/bluealloy/revm/compare/revm-bytecode-v1.0.0-alpha.4...revm-bytecode-v1.0.0-alpha.5) - 2025-03-17 + +### Other + +- updated the following local packages: revm-primitives + ## [1.0.0-alpha.4](https://github.com/bluealloy/revm/compare/revm-bytecode-v1.0.0-alpha.3...revm-bytecode-v1.0.0-alpha.4) - 2025-03-16 ### Fixed diff --git a/crates/bytecode/Cargo.toml b/crates/bytecode/Cargo.toml index cb5c0d9382..cb79921d68 100644 --- a/crates/bytecode/Cargo.toml +++ b/crates/bytecode/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-bytecode" description = "EVM Bytecodes" -version = "1.0.0-alpha.4" +version = "1.0.0-alpha.5" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/context/CHANGELOG.md b/crates/context/CHANGELOG.md index 5288d5e12b..b8a61a7a7e 100644 --- a/crates/context/CHANGELOG.md +++ b/crates/context/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0-alpha.6](https://github.com/bluealloy/revm/compare/revm-context-v1.0.0-alpha.5...revm-context-v1.0.0-alpha.6) - 2025-03-17 + +### Fixed + +- remove duplicated load_account() ([#2225](https://github.com/bluealloy/revm/pull/2225)) + +### Other + +- use AccessListItem associated type instead of AccessList ([#2214](https://github.com/bluealloy/revm/pull/2214)) + ## [1.0.0-alpha.5](https://github.com/bluealloy/revm/compare/revm-context-v1.0.0-alpha.4...revm-context-v1.0.0-alpha.5) - 2025-03-16 ### Added diff --git a/crates/context/Cargo.toml b/crates/context/Cargo.toml index ec1bcb8326..f06bf4da54 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.5" +version = "1.0.0-alpha.6" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/context/interface/CHANGELOG.md b/crates/context/interface/CHANGELOG.md index 366a5e0087..50d87923eb 100644 --- a/crates/context/interface/CHANGELOG.md +++ b/crates/context/interface/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.6](https://github.com/bluealloy/revm/compare/revm-context-interface-v1.0.0-alpha.5...revm-context-interface-v1.0.0-alpha.6) - 2025-03-17 + +### Other + +- use AccessListItem associated type instead of AccessList ([#2214](https://github.com/bluealloy/revm/pull/2214)) + ## [1.0.0-alpha.5](https://github.com/bluealloy/revm/compare/revm-context-interface-v1.0.0-alpha.4...revm-context-interface-v1.0.0-alpha.5) - 2025-03-16 ### Added diff --git a/crates/context/interface/Cargo.toml b/crates/context/interface/Cargo.toml index 42ed28f48a..0abd6d752a 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 = "1.0.0-alpha.5" +version = "1.0.0-alpha.6" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/database/CHANGELOG.md b/crates/database/CHANGELOG.md index afeaeb4db3..f2c4332c7a 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.5](https://github.com/bluealloy/revm/compare/revm-database-v1.0.0-alpha.4...revm-database-v1.0.0-alpha.5) - 2025-03-17 + +### Other + +- simplify single UT for OpSpecId compatibility. ([#2216](https://github.com/bluealloy/revm/pull/2216)) + ## [1.0.0-alpha.4](https://github.com/bluealloy/revm/compare/revm-database-v1.0.0-alpha.3...revm-database-v1.0.0-alpha.4) - 2025-03-16 ### Other diff --git a/crates/database/Cargo.toml b/crates/database/Cargo.toml index 8f592dbc25..124d66bf30 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.4" +version = "1.0.0-alpha.5" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/database/interface/CHANGELOG.md b/crates/database/interface/CHANGELOG.md index 610440b955..1775173e81 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] +## [1.0.0-alpha.5](https://github.com/bluealloy/revm/compare/revm-database-interface-v1.0.0-alpha.4...revm-database-interface-v1.0.0-alpha.5) - 2025-03-17 + +### Other + +- updated the following local packages: revm-primitives + ## [1.0.0-alpha.4](https://github.com/bluealloy/revm/compare/revm-database-interface-v1.0.0-alpha.3...revm-database-interface-v1.0.0-alpha.4) - 2025-03-16 ### Other diff --git a/crates/database/interface/Cargo.toml b/crates/database/interface/Cargo.toml index 37d3187753..3b6ff79705 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 = "1.0.0-alpha.4" +version = "1.0.0-alpha.5" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/handler/CHANGELOG.md b/crates/handler/CHANGELOG.md index b01c0c8bc5..85533e5038 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.7](https://github.com/bluealloy/revm/compare/revm-handler-v1.0.0-alpha.6...revm-handler-v1.0.0-alpha.7) - 2025-03-17 + +### Other + +- use AccessListItem associated type instead of AccessList ([#2214](https://github.com/bluealloy/revm/pull/2214)) + ## [1.0.0-alpha.6](https://github.com/bluealloy/revm/compare/revm-handler-v1.0.0-alpha.5...revm-handler-v1.0.0-alpha.6) - 2025-03-16 ### Added diff --git a/crates/handler/Cargo.toml b/crates/handler/Cargo.toml index 14297f912c..e99e9d8c3c 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.6" +version = "1.0.0-alpha.7" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/inspector/CHANGELOG.md b/crates/inspector/CHANGELOG.md index 0a704fd8e1..c7d69c6e7e 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.7](https://github.com/bluealloy/revm/compare/revm-inspector-v1.0.0-alpha.6...revm-inspector-v1.0.0-alpha.7) - 2025-03-17 + +### Other + +- updated the following local packages: revm-primitives, revm-context, revm-database, revm-handler + ## [1.0.0-alpha.6](https://github.com/bluealloy/revm/compare/revm-inspector-v1.0.0-alpha.5...revm-inspector-v1.0.0-alpha.6) - 2025-03-16 ### Added diff --git a/crates/inspector/Cargo.toml b/crates/inspector/Cargo.toml index e5e42d68ef..07913bb681 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.6" +version = "1.0.0-alpha.7" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/interpreter/CHANGELOG.md b/crates/interpreter/CHANGELOG.md index 624827b713..7f521ecf19 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] +## [16.0.0-alpha.7](https://github.com/bluealloy/revm/compare/revm-interpreter-v16.0.0-alpha.6...revm-interpreter-v16.0.0-alpha.7) - 2025-03-17 + +### Other + +- updated the following local packages: revm-primitives, revm-context-interface + ## [16.0.0-alpha.6](https://github.com/bluealloy/revm/compare/revm-interpreter-v16.0.0-alpha.5...revm-interpreter-v16.0.0-alpha.6) - 2025-03-16 ### Other diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index 9f29530257..7e72dee918 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 = "16.0.0-alpha.6" +version = "16.0.0-alpha.7" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/optimism/CHANGELOG.md b/crates/optimism/CHANGELOG.md index 51b841319d..620c209ae6 100644 --- a/crates/optimism/CHANGELOG.md +++ b/crates/optimism/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0-alpha.6](https://github.com/bluealloy/revm/compare/op-revm-v1.0.0-alpha.5...op-revm-v1.0.0-alpha.6) - 2025-03-17 + +### Other + +- *(op-precompiles)* Add test for g1 msm ([#2227](https://github.com/bluealloy/revm/pull/2227)) +- simplify single UT for OpSpecId compatibility. ([#2216](https://github.com/bluealloy/revm/pull/2216)) +- use AccessListItem associated type instead of AccessList ([#2214](https://github.com/bluealloy/revm/pull/2214)) + ## [1.0.0-alpha.5](https://github.com/bluealloy/revm/compare/op-revm-v1.0.0-alpha.4...op-revm-v1.0.0-alpha.5) - 2025-03-16 ### Added diff --git a/crates/optimism/Cargo.toml b/crates/optimism/Cargo.toml index 195f19ee95..663a32d37f 100644 --- a/crates/optimism/Cargo.toml +++ b/crates/optimism/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "op-revm" description = "Optimism variant of Revm" -version = "1.0.0-alpha.5" +version = "1.0.0-alpha.6" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/precompile/CHANGELOG.md b/crates/precompile/CHANGELOG.md index 98763a0577..0cf8c9b796 100644 --- a/crates/precompile/CHANGELOG.md +++ b/crates/precompile/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [17.0.0-alpha.7](https://github.com/bluealloy/revm/compare/revm-precompile-v17.0.0-alpha.6...revm-precompile-v17.0.0-alpha.7) - 2025-03-17 + +### Other + +- updated the following local packages: revm-primitives, revm-context-interface + ## [17.0.0-alpha.6](https://github.com/bluealloy/revm/compare/revm-precompile-v17.0.0-alpha.5...revm-precompile-v17.0.0-alpha.6) - 2025-03-16 ### Added diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index 5fa9a836f3..2b6406bc8b 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 = "17.0.0-alpha.6" +version = "17.0.0-alpha.7" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index 0899c19d36..51fb0e92bc 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] +## [16.0.0-alpha.5](https://github.com/bluealloy/revm/compare/revm-primitives-v16.0.0-alpha.4...revm-primitives-v16.0.0-alpha.5) - 2025-03-17 + +### Other + +- remove blockhash windows const ([#2228](https://github.com/bluealloy/revm/pull/2228)) + ## [16.0.0-alpha.4](https://github.com/bluealloy/revm/compare/revm-primitives-v16.0.0-alpha.3...revm-primitives-v16.0.0-alpha.4) - 2025-03-16 ### Added diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 8b4b08b804..1c7e113cbe 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-primitives" description = "Revm primitives types" -version = "16.0.0-alpha.4" +version = "16.0.0-alpha.5" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/revm/CHANGELOG.md b/crates/revm/CHANGELOG.md index 45884fd3a5..426a00e026 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.7](https://github.com/bluealloy/revm/compare/revm-v20.0.0-alpha.6...revm-v20.0.0-alpha.7) - 2025-03-17 + +### Other + +- updated the following local packages: revm-primitives, revm-context-interface, revm-context, revm-database, revm-handler + ## [20.0.0-alpha.6](https://github.com/bluealloy/revm/compare/revm-v20.0.0-alpha.5...revm-v20.0.0-alpha.6) - 2025-03-16 ### Other diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index f106595e3b..4e85d702e8 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.6" +version = "20.0.0-alpha.7" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/state/CHANGELOG.md b/crates/state/CHANGELOG.md index 97f026ba98..b704b9afaf 100644 --- a/crates/state/CHANGELOG.md +++ b/crates/state/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.5](https://github.com/bluealloy/revm/compare/revm-state-v1.0.0-alpha.4...revm-state-v1.0.0-alpha.5) - 2025-03-17 + +### Other + +- updated the following local packages: revm-primitives + ## [1.0.0-alpha.4](https://github.com/bluealloy/revm/compare/revm-state-v1.0.0-alpha.3...revm-state-v1.0.0-alpha.4) - 2025-03-16 ### Other diff --git a/crates/state/Cargo.toml b/crates/state/Cargo.toml index c1b7e32c9f..d05b2b3e03 100644 --- a/crates/state/Cargo.toml +++ b/crates/state/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-state" description = "Revm state types" -version = "1.0.0-alpha.4" +version = "1.0.0-alpha.5" authors.workspace = true edition.workspace = true keywords.workspace = true