diff --git a/Cargo.lock b/Cargo.lock index 3068969d2b..4ac9a2a93a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2970,7 +2970,7 @@ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e" [[package]] name = "op-revm" -version = "4.0.2" +version = "4.0.3" dependencies = [ "alloy-primitives", "alloy-sol-types", @@ -3685,7 +3685,7 @@ dependencies = [ [[package]] name = "revm" -version = "23.1.0" +version = "23.1.1" dependencies = [ "revm-bytecode", "revm-context", @@ -3702,7 +3702,7 @@ dependencies = [ [[package]] name = "revm-bytecode" -version = "4.0.0" +version = "4.0.1" dependencies = [ "bitvec", "once_cell", @@ -3714,7 +3714,7 @@ dependencies = [ [[package]] name = "revm-context" -version = "4.1.0" +version = "4.2.0" dependencies = [ "cfg-if", "derive-where", @@ -3729,7 +3729,7 @@ dependencies = [ [[package]] name = "revm-context-interface" -version = "4.1.0" +version = "4.1.1" dependencies = [ "alloy-eip2930", "alloy-eip7702", @@ -3743,7 +3743,7 @@ dependencies = [ [[package]] name = "revm-database" -version = "4.0.0" +version = "4.0.1" dependencies = [ "alloy-eips", "alloy-provider", @@ -3761,7 +3761,7 @@ dependencies = [ [[package]] name = "revm-database-interface" -version = "4.0.0" +version = "4.0.1" dependencies = [ "anyhow", "auto_impl", @@ -3774,7 +3774,7 @@ dependencies = [ [[package]] name = "revm-handler" -version = "4.1.0" +version = "4.1.1" dependencies = [ "alloy-eip7702", "alloy-provider", @@ -3795,7 +3795,7 @@ dependencies = [ [[package]] name = "revm-inspector" -version = "4.1.0" +version = "4.1.1" dependencies = [ "auto_impl", "revm-context", @@ -3811,7 +3811,7 @@ dependencies = [ [[package]] name = "revm-interpreter" -version = "19.1.0" +version = "19.2.0" dependencies = [ "bincode", "revm-bytecode", @@ -3822,7 +3822,7 @@ dependencies = [ [[package]] name = "revm-precompile" -version = "20.1.0" +version = "20.1.1" dependencies = [ "ark-bls12-381", "ark-bn254", @@ -3850,7 +3850,7 @@ dependencies = [ [[package]] name = "revm-primitives" -version = "19.0.0" +version = "19.0.1" dependencies = [ "alloy-primitives", "num_enum", @@ -3859,7 +3859,7 @@ dependencies = [ [[package]] name = "revm-state" -version = "4.0.0" +version = "4.0.1" dependencies = [ "bitflags", "revm-bytecode", @@ -3869,7 +3869,7 @@ dependencies = [ [[package]] name = "revm-statetest-types" -version = "4.1.0" +version = "4.1.1" dependencies = [ "revm", "serde", @@ -3878,7 +3878,7 @@ dependencies = [ [[package]] name = "revme" -version = "5.0.0" +version = "5.0.1" dependencies = [ "alloy-rlp", "alloy-sol-types", diff --git a/Cargo.toml b/Cargo.toml index 2aee0aa1a2..87023b6783 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,19 +39,19 @@ default-members = ["crates/revm"] [workspace.dependencies] # revm -revm = { path = "crates/revm", version = "23.1.0", default-features = false } -primitives = { path = "crates/primitives", package = "revm-primitives", version = "19.0.0", default-features = false } -bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "4.0.0", default-features = false } -database = { path = "crates/database", package = "revm-database", version = "4.0.0", default-features = false } -database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "4.0.0", default-features = false } -state = { path = "crates/state", package = "revm-state", version = "4.0.0", default-features = false } -interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "19.1.0", default-features = false } -inspector = { path = "crates/inspector", package = "revm-inspector", version = "4.1.0", default-features = false } -precompile = { path = "crates/precompile", package = "revm-precompile", version = "20.1.0", default-features = false } -statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "4.1.0", default-features = false } -context = { path = "crates/context", package = "revm-context", version = "4.1.0", default-features = false } -context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "4.1.0", default-features = false } -handler = { path = "crates/handler", package = "revm-handler", version = "4.1.0", default-features = false } +revm = { path = "crates/revm", version = "23.1.1", default-features = false } +primitives = { path = "crates/primitives", package = "revm-primitives", version = "19.0.1", 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 = "19.2.0", default-features = false } +inspector = { path = "crates/inspector", package = "revm-inspector", version = "4.1.1", default-features = false } +precompile = { path = "crates/precompile", package = "revm-precompile", version = "20.1.1", default-features = false } +statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "4.1.1", default-features = false } +context = { path = "crates/context", package = "revm-context", version = "4.2.0", default-features = false } +context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "4.1.1", default-features = false } +handler = { path = "crates/handler", package = "revm-handler", version = "4.1.1", default-features = false } # alloy alloy-eip2930 = { version = "0.2.0", default-features = false } diff --git a/bins/revme/CHANGELOG.md b/bins/revme/CHANGELOG.md index 010dc5d256..6666cfa269 100644 --- a/bins/revme/CHANGELOG.md +++ b/bins/revme/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [5.0.1](https://github.com/imapp-pl/revm/compare/revme-v5.0.0...revme-v5.0.1) - 2025-05-19 + +### Other + +- Change legacy statetests repo ([#2519](https://github.com/imapp-pl/revm/pull/2519)) +- Storage Types Alias ([#2461](https://github.com/imapp-pl/revm/pull/2461)) + ## [5.0.0](https://github.com/bluealloy/revm/compare/revme-v4.1.0...revme-v5.0.0) - 2025-05-07 Dependency bump diff --git a/bins/revme/Cargo.toml b/bins/revme/Cargo.toml index a7fdd342f0..4edd2b2363 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.0.0" +version = "5.0.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/bytecode/CHANGELOG.md b/crates/bytecode/CHANGELOG.md index 34f0811cd4..26ce38ad42 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.0.1](https://github.com/imapp-pl/revm/compare/revm-bytecode-v4.0.0...revm-bytecode-v4.0.1) - 2025-05-19 + +### Other + +- make crates.io version badge clickable ([#2526](https://github.com/imapp-pl/revm/pull/2526)) + ## [4.0.0](https://github.com/bluealloy/revm/compare/revm-bytecode-v3.0.0...revm-bytecode-v4.0.0) - 2025-05-07 ### Added diff --git a/crates/bytecode/Cargo.toml b/crates/bytecode/Cargo.toml index 7899d3ce1d..be768d5b29 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.0" +version = "4.0.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/context/CHANGELOG.md b/crates/context/CHANGELOG.md index 69e8fa91cd..bd79b0f703 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] +## [4.2.0](https://github.com/imapp-pl/revm/compare/revm-context-v4.1.0...revm-context-v4.2.0) - 2025-05-19 + +### Added + +- add builder pattern for TxEnv ([#2518](https://github.com/imapp-pl/revm/pull/2518)) +- make Journal::set_code to be EIP-7702 zero address bytecode aware ([#2511](https://github.com/imapp-pl/revm/pull/2511)) + +### Other + +- make crates.io version badge clickable ([#2526](https://github.com/imapp-pl/revm/pull/2526)) +- Storage Types Alias ([#2461](https://github.com/imapp-pl/revm/pull/2461)) + ## [4.1.0](https://github.com/bluealloy/revm/compare/revm-context-v4.0.0...revm-context-v4.1.0) - 2025-05-07 Dependency bump diff --git a/crates/context/Cargo.toml b/crates/context/Cargo.toml index d8f3a46315..3d40d9b983 100644 --- a/crates/context/Cargo.toml +++ b/crates/context/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-context" description = "Revm context crates" -version = "4.1.0" +version = "4.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 18189a5fab..5a8f227254 100644 --- a/crates/context/interface/CHANGELOG.md +++ b/crates/context/interface/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.1.1](https://github.com/imapp-pl/revm/compare/revm-context-interface-v4.1.0...revm-context-interface-v4.1.1) - 2025-05-19 + +### Other + +- make crates.io version badge clickable ([#2526](https://github.com/imapp-pl/revm/pull/2526)) +- Storage Types Alias ([#2461](https://github.com/imapp-pl/revm/pull/2461)) + ## [4.1.0](https://github.com/bluealloy/revm/compare/revm-context-interface-v4.0.0...revm-context-interface-v4.1.0) - 2025-05-07 Dependency bump diff --git a/crates/context/interface/Cargo.toml b/crates/context/interface/Cargo.toml index fc0aeec43d..6f9cb421c8 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 = "4.1.0" +version = "4.1.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/database/CHANGELOG.md b/crates/database/CHANGELOG.md index a2211452ea..29bcfb3771 100644 --- a/crates/database/CHANGELOG.md +++ b/crates/database/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.0.1](https://github.com/imapp-pl/revm/compare/revm-database-v4.0.0...revm-database-v4.0.1) - 2025-05-19 + +### Other + +- make crates.io version badge clickable ([#2526](https://github.com/imapp-pl/revm/pull/2526)) +- Storage Types Alias ([#2461](https://github.com/imapp-pl/revm/pull/2461)) + ## [4.0.0](https://github.com/bluealloy/revm/compare/revm-database-v3.1.0...revm-database-v4.0.0) - 2025-05-07 diff --git a/crates/database/Cargo.toml b/crates/database/Cargo.toml index 0edd037c8a..7d3d920e38 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.0" +version = "4.0.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/database/interface/CHANGELOG.md b/crates/database/interface/CHANGELOG.md index b24c7fe920..b6ac428211 100644 --- a/crates/database/interface/CHANGELOG.md +++ b/crates/database/interface/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.0.1](https://github.com/imapp-pl/revm/compare/revm-database-interface-v4.0.0...revm-database-interface-v4.0.1) - 2025-05-19 + +### Other + +- make crates.io version badge clickable ([#2526](https://github.com/imapp-pl/revm/pull/2526)) +- Storage Types Alias ([#2461](https://github.com/imapp-pl/revm/pull/2461)) + ## [4.0.0](https://github.com/bluealloy/revm/compare/revm-database-interface-v3.0.1...revm-database-interface-v4.0.0) - 2025-05-07 Dependency bump diff --git a/crates/database/interface/Cargo.toml b/crates/database/interface/Cargo.toml index 48282b95b2..4ca4db12de 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.0" +version = "4.0.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/handler/CHANGELOG.md b/crates/handler/CHANGELOG.md index 9d8d68757c..5287b4b51d 100644 --- a/crates/handler/CHANGELOG.md +++ b/crates/handler/CHANGELOG.md @@ -11,6 +11,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.1.1](https://github.com/imapp-pl/revm/compare/revm-handler-v4.1.0...revm-handler-v4.1.1) - 2025-05-19 + +### Other + +- make crates.io version badge clickable ([#2526](https://github.com/imapp-pl/revm/pull/2526)) +- fix clippy ([#2523](https://github.com/imapp-pl/revm/pull/2523)) +- Storage Types Alias ([#2461](https://github.com/imapp-pl/revm/pull/2461)) + ## [4.1.0](https://github.com/bluealloy/revm/compare/revm-handler-v4.0.0...revm-handler-v4.1.0) - 2025-05-07 diff --git a/crates/handler/Cargo.toml b/crates/handler/Cargo.toml index 34945e1aca..f510508ddf 100644 --- a/crates/handler/Cargo.toml +++ b/crates/handler/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-handler" description = "Revm handler crates" -version = "4.1.0" +version = "4.1.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/inspector/CHANGELOG.md b/crates/inspector/CHANGELOG.md index a6cabbb851..801b212681 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] +## [4.1.1](https://github.com/imapp-pl/revm/compare/revm-inspector-v4.1.0...revm-inspector-v4.1.1) - 2025-05-19 + +### Other + +- make crates.io version badge clickable ([#2526](https://github.com/imapp-pl/revm/pull/2526)) + ## [4.1.0](https://github.com/bluealloy/revm/compare/revm-inspector-v4.0.0...revm-inspector-v4.1.0) - 2025-05-07 Dependency bump diff --git a/crates/inspector/Cargo.toml b/crates/inspector/Cargo.toml index 2543fb4989..9e3b4863bb 100644 --- a/crates/inspector/Cargo.toml +++ b/crates/inspector/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-inspector" description = "Revm inspector interface" -version = "4.1.0" +version = "4.1.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/interpreter/CHANGELOG.md b/crates/interpreter/CHANGELOG.md index 22c0e4bde6..ec8f7e5817 100644 --- a/crates/interpreter/CHANGELOG.md +++ b/crates/interpreter/CHANGELOG.md @@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [19.2.0](https://github.com/imapp-pl/revm/compare/revm-interpreter-v19.1.0...revm-interpreter-v19.2.0) - 2025-05-19 + +### Added + +- expose Gas::memory field ([#2512](https://github.com/imapp-pl/revm/pull/2512)) +- added CallInput::bytes(ctx: &CTX) -> Bytes {} function ([#2507](https://github.com/imapp-pl/revm/pull/2507)) + +### Other + +- make crates.io version badge clickable ([#2526](https://github.com/imapp-pl/revm/pull/2526)) +- fix clippy ([#2523](https://github.com/imapp-pl/revm/pull/2523)) +- Storage Types Alias ([#2461](https://github.com/imapp-pl/revm/pull/2461)) + ## [19.1.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v19.0.0...revm-interpreter-v19.1.0) - 2025-05-07 Dependency bump diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index ee67fe2e74..f51ed6f111 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 = "19.1.0" +version = "19.2.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 3265e597f7..ffdd68b084 100644 --- a/crates/op-revm/CHANGELOG.md +++ b/crates/op-revm/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.0.3](https://github.com/imapp-pl/revm/compare/op-revm-v4.0.2...op-revm-v4.0.3) - 2025-05-19 + +### Other + +- make crates.io version badge clickable ([#2526](https://github.com/imapp-pl/revm/pull/2526)) + ## [4.0.2](https://github.com/bluealloy/revm/compare/op-revm-v4.0.1...op-revm-v4.0.2) - 2025-05-09 ### Fixed diff --git a/crates/op-revm/Cargo.toml b/crates/op-revm/Cargo.toml index d5fb230393..c4bee990e9 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 = "4.0.2" +version = "4.0.3" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/precompile/CHANGELOG.md b/crates/precompile/CHANGELOG.md index 8c09ab638e..d53c8788c8 100644 --- a/crates/precompile/CHANGELOG.md +++ b/crates/precompile/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [20.1.1](https://github.com/imapp-pl/revm/compare/revm-precompile-v20.1.0...revm-precompile-v20.1.1) - 2025-05-19 + +### Other + +- make crates.io version badge clickable ([#2526](https://github.com/imapp-pl/revm/pull/2526)) +- fixed dead link kzg_point_evaluation.rs ([#2508](https://github.com/imapp-pl/revm/pull/2508)) + ## [20.1.0](https://github.com/bluealloy/revm/compare/revm-precompile-v20.0.0...revm-precompile-v20.1.0) - 2025-05-07 Dependency bump diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index 63daffb0a0..282d234fc0 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 = "20.1.0" +version = "20.1.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index 0897a33363..002042aeb4 100644 --- a/crates/primitives/CHANGELOG.md +++ b/crates/primitives/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [19.0.1](https://github.com/imapp-pl/revm/compare/revm-primitives-v19.0.0...revm-primitives-v19.0.1) - 2025-05-19 + +### Other + +- make crates.io version badge clickable ([#2526](https://github.com/imapp-pl/revm/pull/2526)) +- add Prague activation timestamp ([#2514](https://github.com/imapp-pl/revm/pull/2514)) +- Storage Types Alias ([#2461](https://github.com/imapp-pl/revm/pull/2461)) + ## [19.0.0](https://github.com/bluealloy/revm/compare/revm-primitives-v18.0.0...revm-primitives-v19.0.0) - 2025-05-07 ### Added diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index db5fb155d1..77122ac1ee 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.0.0" +version = "19.0.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/revm/CHANGELOG.md b/crates/revm/CHANGELOG.md index 27f6158e16..b47e69d3f5 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] +## [23.1.1](https://github.com/imapp-pl/revm/compare/revm-v23.1.0...revm-v23.1.1) - 2025-05-19 + +### Other + +- make crates.io version badge clickable ([#2526](https://github.com/imapp-pl/revm/pull/2526)) + ## [23.1.0](https://github.com/bluealloy/revm/compare/revm-v23.0.0...revm-v23.1.0) - 2025-05-07 Dependency bump diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index 318847d15c..88d2029538 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 = "23.1.0" +version = "23.1.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/state/CHANGELOG.md b/crates/state/CHANGELOG.md index 2f675c018a..01285f059b 100644 --- a/crates/state/CHANGELOG.md +++ b/crates/state/CHANGELOG.md @@ -12,6 +12,13 @@ Dependency bump ## [Unreleased] +## [4.0.1](https://github.com/imapp-pl/revm/compare/revm-state-v4.0.0...revm-state-v4.0.1) - 2025-05-19 + +### Other + +- make crates.io version badge clickable ([#2526](https://github.com/imapp-pl/revm/pull/2526)) +- Storage Types Alias ([#2461](https://github.com/imapp-pl/revm/pull/2461)) + ## [3.0.1](https://github.com/bluealloy/revm/compare/revm-state-v3.0.0...revm-state-v3.0.1) - 2025-05-07 Yanked release diff --git a/crates/state/Cargo.toml b/crates/state/Cargo.toml index b018a27986..fcfcd04878 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.0" +version = "4.0.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/statetest-types/CHANGELOG.md b/crates/statetest-types/CHANGELOG.md index 9ee68d5475..96b0e23be3 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] +## [4.1.1](https://github.com/imapp-pl/revm/compare/revm-statetest-types-v4.1.0...revm-statetest-types-v4.1.1) - 2025-05-19 + +### Other + +- make crates.io version badge clickable ([#2526](https://github.com/imapp-pl/revm/pull/2526)) +- Storage Types Alias ([#2461](https://github.com/imapp-pl/revm/pull/2461)) + ## [4.1.0](https://github.com/bluealloy/revm/compare/revm-statetest-types-v4.0.0...revm-statetest-types-v4.1.0) - 2025-05-07 Dependency bump diff --git a/crates/statetest-types/Cargo.toml b/crates/statetest-types/Cargo.toml index c14db79f7b..3c5e6fdf1d 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 = "4.1.0" +version = "4.1.1" authors.workspace = true edition.workspace = true keywords.workspace = true