diff --git a/Cargo.lock b/Cargo.lock index e368fda971..dd1f7eeb78 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2971,7 +2971,7 @@ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e" [[package]] name = "op-revm" -version = "5.0.0" +version = "5.1.0" dependencies = [ "alloy-primitives", "alloy-sol-types", @@ -3685,7 +3685,7 @@ dependencies = [ [[package]] name = "revm" -version = "24.0.0" +version = "24.1.0" dependencies = [ "revm-bytecode", "revm-context", @@ -3702,7 +3702,7 @@ dependencies = [ [[package]] name = "revm-bytecode" -version = "4.0.1" +version = "4.1.0" dependencies = [ "bitvec", "once_cell", @@ -3714,7 +3714,7 @@ dependencies = [ [[package]] name = "revm-context" -version = "5.0.0" +version = "6.0.0" dependencies = [ "cfg-if", "derive-where", @@ -3729,7 +3729,7 @@ dependencies = [ [[package]] name = "revm-context-interface" -version = "5.0.0" +version = "6.0.0" dependencies = [ "alloy-eip2930", "alloy-eip7702", @@ -3743,7 +3743,7 @@ dependencies = [ [[package]] name = "revm-database" -version = "4.0.1" +version = "4.1.0" dependencies = [ "alloy-eips", "alloy-provider", @@ -3761,7 +3761,7 @@ dependencies = [ [[package]] name = "revm-database-interface" -version = "4.0.1" +version = "4.1.0" dependencies = [ "anyhow", "auto_impl", @@ -3774,7 +3774,7 @@ dependencies = [ [[package]] name = "revm-handler" -version = "5.0.0" +version = "6.0.0" dependencies = [ "alloy-eip7702", "alloy-provider", @@ -3795,7 +3795,7 @@ dependencies = [ [[package]] name = "revm-inspector" -version = "5.0.0" +version = "6.0.0" dependencies = [ "auto_impl", "revm-context", @@ -3811,7 +3811,7 @@ dependencies = [ [[package]] name = "revm-interpreter" -version = "20.0.0" +version = "21.0.0" dependencies = [ "bincode", "revm-bytecode", @@ -3822,7 +3822,7 @@ dependencies = [ [[package]] name = "revm-precompile" -version = "21.0.0" +version = "21.1.0" dependencies = [ "ark-bls12-381", "ark-bn254", @@ -3850,7 +3850,7 @@ dependencies = [ [[package]] name = "revm-primitives" -version = "19.1.0" +version = "19.2.0" dependencies = [ "alloy-primitives", "num_enum", @@ -3859,7 +3859,7 @@ dependencies = [ [[package]] name = "revm-state" -version = "4.0.1" +version = "5.0.0" dependencies = [ "bitflags", "revm-bytecode", @@ -3869,7 +3869,7 @@ dependencies = [ [[package]] name = "revm-statetest-types" -version = "5.0.0" +version = "5.1.0" dependencies = [ "revm", "serde", @@ -3878,7 +3878,7 @@ dependencies = [ [[package]] name = "revme" -version = "5.1.0" +version = "6.0.0" dependencies = [ "alloy-rlp", "alloy-sol-types", diff --git a/Cargo.toml b/Cargo.toml index 12d02968e8..1e80e8846d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,20 +39,20 @@ default-members = ["crates/revm"] [workspace.dependencies] # revm -revm = { path = "crates/revm", version = "24.0.0", default-features = false } -primitives = { path = "crates/primitives", package = "revm-primitives", version = "19.1.0", default-features = false } -bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "4.0.1", default-features = false } -database = { path = "crates/database", package = "revm-database", version = "4.0.1", default-features = false } -database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "4.0.1", default-features = false } -state = { path = "crates/state", package = "revm-state", version = "4.0.1", default-features = false } -interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "20.0.0", default-features = false } -inspector = { path = "crates/inspector", package = "revm-inspector", version = "5.0.0", default-features = false } -precompile = { path = "crates/precompile", package = "revm-precompile", version = "21.0.0", default-features = false } -statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "5.0.0", default-features = false } -context = { path = "crates/context", package = "revm-context", version = "5.0.0", default-features = false } -context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "5.0.0", default-features = false } -handler = { path = "crates/handler", package = "revm-handler", version = "5.0.0", default-features = false } -op-revm = { path = "crates/op-revm", package = "op-revm", version = "5.0.0", default-features = false } +revm = { path = "crates/revm", version = "24.1.0", default-features = false } +primitives = { path = "crates/primitives", package = "revm-primitives", version = "19.2.0", default-features = false } +bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "4.1.0", default-features = false } +database = { path = "crates/database", package = "revm-database", version = "4.1.0", default-features = false } +database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "4.1.0", default-features = false } +state = { path = "crates/state", package = "revm-state", version = "5.0.0", default-features = false } +interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "21.0.0", default-features = false } +inspector = { path = "crates/inspector", package = "revm-inspector", version = "6.0.0", default-features = false } +precompile = { path = "crates/precompile", package = "revm-precompile", version = "21.1.0", default-features = false } +statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "5.1.0", default-features = false } +context = { path = "crates/context", package = "revm-context", version = "6.0.0", default-features = false } +context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "6.0.0", default-features = false } +handler = { path = "crates/handler", package = "revm-handler", version = "6.0.0", default-features = false } +op-revm = { path = "crates/op-revm", package = "op-revm", version = "5.1.0", default-features = false } # alloy alloy-eip2930 = { version = "0.2.1", default-features = false } diff --git a/bins/revme/CHANGELOG.md b/bins/revme/CHANGELOG.md index 7b52ec7665..2d934de50e 100644 --- a/bins/revme/CHANGELOG.md +++ b/bins/revme/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/taikoxyz/revm/compare/revme-v5.1.0...revme-v6.0.0) - 2025-05-29 + +### Added + +- Config blob basefee fraction ([#2551](https://github.com/taikoxyz/revm/pull/2551)) +- expand timestamp/block_number to u256 ([#2546](https://github.com/taikoxyz/revm/pull/2546)) +- transact multi tx ([#2517](https://github.com/taikoxyz/revm/pull/2517)) + ## [5.1.0](https://github.com/bluealloy/revm/compare/revme-v5.0.0...revme-v5.1.0) - 2025-05-22 ### Added diff --git a/bins/revme/Cargo.toml b/bins/revme/Cargo.toml index db6cf6a25b..340423c404 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 = "5.1.0" +version = "6.0.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/bytecode/CHANGELOG.md b/crates/bytecode/CHANGELOG.md index 4902099caa..a8d38ccb68 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] +## [4.1.0](https://github.com/taikoxyz/revm/compare/revm-bytecode-v4.0.1...revm-bytecode-v4.1.0) - 2025-05-29 + +### Added + +- transact multi tx ([#2517](https://github.com/taikoxyz/revm/pull/2517)) + ## [4.0.1](https://github.com/bluealloy/revm/compare/revm-bytecode-v4.0.0...revm-bytecode-v4.0.1) - 2025-05-22 ### Other diff --git a/crates/bytecode/Cargo.toml b/crates/bytecode/Cargo.toml index be768d5b29..e4744e8a97 100644 --- a/crates/bytecode/Cargo.toml +++ b/crates/bytecode/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-bytecode" description = "EVM Bytecodes" -version = "4.0.1" +version = "4.1.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/context/CHANGELOG.md b/crates/context/CHANGELOG.md index 8ca2f2e0b4..ecd5235b2c 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] +## [6.0.0](https://github.com/taikoxyz/revm/compare/revm-context-v5.0.0...revm-context-v6.0.0) - 2025-05-29 + +### Added + +- Config blob basefee fraction ([#2551](https://github.com/taikoxyz/revm/pull/2551)) +- expand timestamp/block_number to u256 ([#2546](https://github.com/taikoxyz/revm/pull/2546)) +- transact multi tx ([#2517](https://github.com/taikoxyz/revm/pull/2517)) + +### Other + +- add dot to trigger ci ([#2552](https://github.com/taikoxyz/revm/pull/2552)) + ## [5.0.0](https://github.com/bluealloy/revm/compare/revm-context-v4.1.0...revm-context-v5.0.0) - 2025-05-22 ### Added diff --git a/crates/context/Cargo.toml b/crates/context/Cargo.toml index e1c8a1335d..0f20466f0f 100644 --- a/crates/context/Cargo.toml +++ b/crates/context/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-context" description = "Revm context crates" -version = "5.0.0" +version = "6.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 c28ad21846..abda523afa 100644 --- a/crates/context/interface/CHANGELOG.md +++ b/crates/context/interface/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [6.0.0](https://github.com/taikoxyz/revm/compare/revm-context-interface-v5.0.0...revm-context-interface-v6.0.0) - 2025-05-29 + +### Added + +- Config blob basefee fraction ([#2551](https://github.com/taikoxyz/revm/pull/2551)) +- expand timestamp/block_number to u256 ([#2546](https://github.com/taikoxyz/revm/pull/2546)) +- transact multi tx ([#2517](https://github.com/taikoxyz/revm/pull/2517)) + ## [5.0.0](https://github.com/bluealloy/revm/compare/revm-context-interface-v4.1.0...revm-context-interface-v5.0.0) - 2025-05-22 ### Added diff --git a/crates/context/interface/Cargo.toml b/crates/context/interface/Cargo.toml index 04bba58b22..1d7f97991f 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 = "5.0.0" +version = "6.0.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/database/CHANGELOG.md b/crates/database/CHANGELOG.md index 9b7a2e408c..6999215219 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] +## [4.1.0](https://github.com/taikoxyz/revm/compare/revm-database-v4.0.1...revm-database-v4.1.0) - 2025-05-29 + +### Added + +- transact multi tx ([#2517](https://github.com/taikoxyz/revm/pull/2517)) + ## [4.0.1](https://github.com/bluealloy/revm/compare/revm-database-v4.0.0...revm-database-v4.0.1) - 2025-05-22 ### Other diff --git a/crates/database/Cargo.toml b/crates/database/Cargo.toml index 7d3d920e38..afb2315d0b 100644 --- a/crates/database/Cargo.toml +++ b/crates/database/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-database" description = "Revm Database implementations" -version = "4.0.1" +version = "4.1.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 2cbd5afef6..3f8bab7d81 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] +## [4.1.0](https://github.com/taikoxyz/revm/compare/revm-database-interface-v4.0.1...revm-database-interface-v4.1.0) - 2025-05-29 + +### Added + +- transact multi tx ([#2517](https://github.com/taikoxyz/revm/pull/2517)) + ## [4.0.1](https://github.com/bluealloy/revm/compare/revm-database-interface-v4.0.0...revm-database-interface-v4.0.1) - 2025-05-22 ### Other diff --git a/crates/database/interface/Cargo.toml b/crates/database/interface/Cargo.toml index 4ca4db12de..82322f8589 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 = "4.0.1" +version = "4.1.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/handler/CHANGELOG.md b/crates/handler/CHANGELOG.md index 9d56c2440c..9f2914b03c 100644 --- a/crates/handler/CHANGELOG.md +++ b/crates/handler/CHANGELOG.md @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [6.0.0](https://github.com/taikoxyz/revm/compare/revm-handler-v5.0.0...revm-handler-v6.0.0) - 2025-05-29 + +### Added + +- expand timestamp/block_number to u256 ([#2546](https://github.com/taikoxyz/revm/pull/2546)) +- transact multi tx ([#2517](https://github.com/taikoxyz/revm/pull/2517)) + ## [5.0.0](https://github.com/bluealloy/revm/compare/revm-handler-v4.1.0...revm-handler-v5.0.0) - 2025-05-22 ### Added diff --git a/crates/handler/Cargo.toml b/crates/handler/Cargo.toml index b8ebde9d72..6c9c4f5ffd 100644 --- a/crates/handler/Cargo.toml +++ b/crates/handler/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-handler" description = "Revm handler crates" -version = "5.0.0" +version = "6.0.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/inspector/CHANGELOG.md b/crates/inspector/CHANGELOG.md index aa9ced6e68..02fab38f9c 100644 --- a/crates/inspector/CHANGELOG.md +++ b/crates/inspector/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [6.0.0](https://github.com/taikoxyz/revm/compare/revm-inspector-v5.0.0...revm-inspector-v6.0.0) - 2025-05-29 + +### Added + +- transact multi tx ([#2517](https://github.com/taikoxyz/revm/pull/2517)) + +### Other + +- Add InstructionContext instead of Host and Interpreter ([#2548](https://github.com/taikoxyz/revm/pull/2548)) + ## [5.0.0](https://github.com/bluealloy/revm/compare/revm-inspector-v4.1.0...revm-inspector-v5.0.0) - 2025-05-22 ### Added diff --git a/crates/inspector/Cargo.toml b/crates/inspector/Cargo.toml index 5c03b0fd0d..119e4e1d4e 100644 --- a/crates/inspector/Cargo.toml +++ b/crates/inspector/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-inspector" description = "Revm inspector interface" -version = "5.0.0" +version = "6.0.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/interpreter/CHANGELOG.md b/crates/interpreter/CHANGELOG.md index 24b901f779..87b6cfd91b 100644 --- a/crates/interpreter/CHANGELOG.md +++ b/crates/interpreter/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [21.0.0](https://github.com/taikoxyz/revm/compare/revm-interpreter-v20.0.0...revm-interpreter-v21.0.0) - 2025-05-29 + +### Added + +- expand timestamp/block_number to u256 ([#2546](https://github.com/taikoxyz/revm/pull/2546)) +- transact multi tx ([#2517](https://github.com/taikoxyz/revm/pull/2517)) + +### Other + +- Add InstructionContext instead of Host and Interpreter ([#2548](https://github.com/taikoxyz/revm/pull/2548)) + ## [20.0.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v19.1.0...revm-interpreter-v20.0.0) - 2025-05-22 ### Added diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index 1b89eaea21..1b7cee3e1e 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 = "20.0.0" +version = "21.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 891c9952cf..4d55b8f8c6 100644 --- a/crates/op-revm/CHANGELOG.md +++ b/crates/op-revm/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [5.1.0](https://github.com/taikoxyz/revm/compare/op-revm-v5.0.0...op-revm-v5.1.0) - 2025-05-29 + +### Added + +- expand timestamp/block_number to u256 ([#2546](https://github.com/taikoxyz/revm/pull/2546)) +- transact multi tx ([#2517](https://github.com/taikoxyz/revm/pull/2517)) + +### Other + +- *(test)* preserve order of fields in json fixtures ([#2541](https://github.com/taikoxyz/revm/pull/2541)) + ## [5.0.0](https://github.com/bluealloy/revm/compare/op-revm-v4.0.2...op-revm-v5.0.0) - 2025-05-22 ### Added diff --git a/crates/op-revm/Cargo.toml b/crates/op-revm/Cargo.toml index ccd8a3adce..4f12e0c2a7 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 = "5.0.0" +version = "5.1.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/precompile/CHANGELOG.md b/crates/precompile/CHANGELOG.md index 45d58fe571..928e8cd4c1 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] +## [21.1.0](https://github.com/taikoxyz/revm/compare/revm-precompile-v21.0.0...revm-precompile-v21.1.0) - 2025-05-29 + +### Added + +- transact multi tx ([#2517](https://github.com/taikoxyz/revm/pull/2517)) + ## [21.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v20.1.0...revm-precompile-v21.0.0) - 2025-05-22 ### Added diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index 3c384eac5a..058479df45 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 = "21.0.0" +version = "21.1.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index 3429f982a4..c45ace7114 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] +## [19.2.0](https://github.com/taikoxyz/revm/compare/revm-primitives-v19.1.0...revm-primitives-v19.2.0) - 2025-05-29 + +### Added + +- transact multi tx ([#2517](https://github.com/taikoxyz/revm/pull/2517)) + ## [19.1.0](https://github.com/bluealloy/revm/compare/revm-primitives-v19.0.0...revm-primitives-v19.1.0) - 2025-05-22 ### Added diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 1b31896b17..22ebe94514 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-primitives" description = "Revm primitives types" -version = "19.1.0" +version = "19.2.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/revm/CHANGELOG.md b/crates/revm/CHANGELOG.md index bc0ba01727..121fe94a42 100644 --- a/crates/revm/CHANGELOG.md +++ b/crates/revm/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [24.1.0](https://github.com/taikoxyz/revm/compare/revm-v24.0.0...revm-v24.1.0) - 2025-05-29 + +### Added + +- transact multi tx ([#2517](https://github.com/taikoxyz/revm/pull/2517)) + ## [24.0.0](https://github.com/bluealloy/revm/compare/revm-v23.1.0...revm-v24.0.0) - 2025-05-22 ### Other diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index 6edfd08e23..8fef1a7482 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 = "24.0.0" +version = "24.1.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/state/CHANGELOG.md b/crates/state/CHANGELOG.md index 4aad834f9d..1537933f9a 100644 --- a/crates/state/CHANGELOG.md +++ b/crates/state/CHANGELOG.md @@ -12,6 +12,12 @@ Dependency bump ## [Unreleased] +## [5.0.0](https://github.com/taikoxyz/revm/compare/revm-state-v4.0.1...revm-state-v5.0.0) - 2025-05-29 + +### Added + +- transact multi tx ([#2517](https://github.com/taikoxyz/revm/pull/2517)) + ## [4.0.1](https://github.com/bluealloy/revm/compare/revm-state-v4.0.0...revm-state-v4.0.1) - 2025-05-22 ### Other diff --git a/crates/state/Cargo.toml b/crates/state/Cargo.toml index fcfcd04878..3291db43cf 100644 --- a/crates/state/Cargo.toml +++ b/crates/state/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-state" description = "Revm state types" -version = "4.0.1" +version = "5.0.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/statetest-types/CHANGELOG.md b/crates/statetest-types/CHANGELOG.md index 8e62e2d6f4..5c6294e4e5 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] +## [5.1.0](https://github.com/taikoxyz/revm/compare/revm-statetest-types-v5.0.0...revm-statetest-types-v5.1.0) - 2025-05-29 + +### Added + +- transact multi tx ([#2517](https://github.com/taikoxyz/revm/pull/2517)) + ## [5.0.0](https://github.com/bluealloy/revm/compare/revm-statetest-types-v4.1.0...revm-statetest-types-v5.0.0) - 2025-05-22 ### Other diff --git a/crates/statetest-types/Cargo.toml b/crates/statetest-types/Cargo.toml index 8efeb27cd6..5f1a3aefc0 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 = "5.0.0" +version = "5.1.0" authors.workspace = true edition.workspace = true keywords.workspace = true