diff --git a/Cargo.lock b/Cargo.lock index ece8043aa7..7ed74bd166 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2999,7 +2999,7 @@ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e" [[package]] name = "op-revm" -version = "1.0.0" +version = "1.1.0" dependencies = [ "alloy-sol-types", "anyhow", @@ -3683,7 +3683,7 @@ dependencies = [ [[package]] name = "revm" -version = "20.0.0" +version = "20.1.0" dependencies = [ "revm-bytecode", "revm-context", @@ -3700,7 +3700,7 @@ dependencies = [ [[package]] name = "revm-bytecode" -version = "1.0.0" +version = "1.0.1" dependencies = [ "bitvec", "paste", @@ -3711,7 +3711,7 @@ dependencies = [ [[package]] name = "revm-context" -version = "1.0.0" +version = "2.0.0" dependencies = [ "cfg-if", "derive-where", @@ -3726,7 +3726,7 @@ dependencies = [ [[package]] name = "revm-context-interface" -version = "1.0.0" +version = "1.1.0" dependencies = [ "alloy-eip2930", "alloy-eip7702", @@ -3739,7 +3739,7 @@ dependencies = [ [[package]] name = "revm-database" -version = "1.0.0" +version = "1.0.1" dependencies = [ "alloy-eips", "alloy-provider", @@ -3760,7 +3760,7 @@ dependencies = [ [[package]] name = "revm-database-interface" -version = "1.0.0" +version = "1.0.1" dependencies = [ "alloy-sol-types", "anyhow", @@ -3775,7 +3775,7 @@ dependencies = [ [[package]] name = "revm-handler" -version = "1.0.0" +version = "2.0.0" dependencies = [ "alloy-eip7702", "alloy-provider", @@ -3796,7 +3796,7 @@ dependencies = [ [[package]] name = "revm-inspector" -version = "1.0.0" +version = "1.0.1" dependencies = [ "auto_impl", "revm-context", @@ -3812,7 +3812,7 @@ dependencies = [ [[package]] name = "revm-interpreter" -version = "16.0.0" +version = "16.0.1" dependencies = [ "bincode", "revm-bytecode", @@ -3825,7 +3825,7 @@ dependencies = [ [[package]] name = "revm-precompile" -version = "17.0.0" +version = "17.1.0" dependencies = [ "ark-bls12-381", "ark-bn254", @@ -3857,7 +3857,7 @@ dependencies = [ [[package]] name = "revm-primitives" -version = "16.0.0" +version = "17.0.0" dependencies = [ "alloy-primitives", "enumn", @@ -3866,7 +3866,7 @@ dependencies = [ [[package]] name = "revm-state" -version = "1.0.0" +version = "1.0.1" dependencies = [ "bitflags", "revm-bytecode", @@ -3876,7 +3876,7 @@ dependencies = [ [[package]] name = "revm-statetest-types" -version = "1.0.0" +version = "1.0.1" dependencies = [ "revm", "serde", @@ -3885,7 +3885,7 @@ dependencies = [ [[package]] name = "revme" -version = "3.0.0" +version = "4.0.0" dependencies = [ "alloy-rlp", "alloy-sol-types", diff --git a/Cargo.toml b/Cargo.toml index 8d8669d2d1..7e0a95d8d4 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", default-features = false } -primitives = { path = "crates/primitives", package = "revm-primitives", version = "16.0.0", default-features = false } -bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "1.0.0", default-features = false } -database = { path = "crates/database", package = "revm-database", version = "1.0.0", default-features = false } -database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "1.0.0", default-features = false } -state = { path = "crates/state", package = "revm-state", version = "1.0.0", default-features = false } -interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "16.0.0", default-features = false } -inspector = { path = "crates/inspector", package = "revm-inspector", version = "1.0.0", default-features = false } -precompile = { path = "crates/precompile", package = "revm-precompile", version = "17.0.0", default-features = false } -statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "1.0.0", default-features = false } -context = { path = "crates/context", package = "revm-context", version = "1.0.0", default-features = false } -context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "1.0.0", default-features = false } -handler = { path = "crates/handler", package = "revm-handler", version = "1.0.0", default-features = false } +revm = { path = "crates/revm", version = "20.1.0", default-features = false } +primitives = { path = "crates/primitives", package = "revm-primitives", version = "17.0.0", default-features = false } +bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "1.0.1", default-features = false } +database = { path = "crates/database", package = "revm-database", version = "1.0.1", default-features = false } +database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "1.0.1", default-features = false } +state = { path = "crates/state", package = "revm-state", version = "1.0.1", default-features = false } +interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "16.0.1", default-features = false } +inspector = { path = "crates/inspector", package = "revm-inspector", version = "1.0.1", default-features = false } +precompile = { path = "crates/precompile", package = "revm-precompile", version = "17.1.0", default-features = false } +statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "1.0.1", default-features = false } +context = { path = "crates/context", package = "revm-context", version = "2.0.0", default-features = false } +context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "1.1.0", default-features = false } +handler = { path = "crates/handler", package = "revm-handler", version = "2.0.0", 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 06abc53d3b..91d4edaf4c 100644 --- a/bins/revme/CHANGELOG.md +++ b/bins/revme/CHANGELOG.md @@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.0.0](https://github.com/bluealloy/revm/compare/revme-v3.0.0...revme-v4.0.0) - 2025-03-28 + +### Added + +- Add JournalInner ([#2311](https://github.com/bluealloy/revm/pull/2311)) +- Add criterion to revme bench command ([#2295](https://github.com/bluealloy/revm/pull/2295)) + +### Other + +- add criterion benchmark for evm build ([#2319](https://github.com/bluealloy/revm/pull/2319)) +- add check for path and existence existence ([#2320](https://github.com/bluealloy/revm/pull/2320)) +- bump bench time, and reduce burntpix iterations ([#2315](https://github.com/bluealloy/revm/pull/2315)) +- update EOF validation logic and improve error handling ([#2304](https://github.com/bluealloy/revm/pull/2304)) + ## [3.0.0](https://github.com/bluealloy/revm/compare/revme-v3.0.0-alpha.7...revme-v3.0.0) - 2025-03-24 ### Other diff --git a/bins/revme/Cargo.toml b/bins/revme/Cargo.toml index 1252bc9aaf..a94a2cf7a0 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" +version = "4.0.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/bytecode/CHANGELOG.md b/crates/bytecode/CHANGELOG.md index d83807c5f8..47d810105f 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.1](https://github.com/bluealloy/revm/compare/revm-bytecode-v1.0.0...revm-bytecode-v1.0.1) - 2025-03-28 + +### Other + +- remove outdated TODO comments ([#2325](https://github.com/bluealloy/revm/pull/2325)) + ## [1.0.0 ](https://github.com/bluealloy/revm/compare/revm-bytecode-v1.0.0-alpha.5...revm-bytecode-v1.0.0) - 2025-03-24 Stable version diff --git a/crates/bytecode/Cargo.toml b/crates/bytecode/Cargo.toml index bcd9465d02..49b1c72ff2 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" +version = "1.0.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/context/CHANGELOG.md b/crates/context/CHANGELOG.md index 45da50f547..30e501d51d 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] +## [2.0.0](https://github.com/bluealloy/revm/compare/revm-context-v1.0.0...revm-context-v2.0.0) - 2025-03-28 + +### Added + +- Add JournalInner ([#2311](https://github.com/bluealloy/revm/pull/2311)) + +### Other + +- Remove LATEST variant from SpecId enum ([#2299](https://github.com/bluealloy/revm/pull/2299)) + ## [1.0.0](https://github.com/bluealloy/revm/compare/revm-context-v1.0.0-alpha.6...revm-context-v1.0.0) - 2025-03-24 ### Other diff --git a/crates/context/Cargo.toml b/crates/context/Cargo.toml index b02068f234..cbef119a19 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" +version = "2.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 72be1547e0..e4b8868396 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.1.0](https://github.com/bluealloy/revm/compare/revm-context-interface-v1.0.0...revm-context-interface-v1.1.0) - 2025-03-28 + +### Added + +- Add JournalInner ([#2311](https://github.com/bluealloy/revm/pull/2311)) + ## [1.0.0](https://github.com/bluealloy/revm/compare/revm-context-interface-v1.0.0-alpha.5...revm-context-interface-v1.0.0) - 2025-03-24 Stable version diff --git a/crates/context/interface/Cargo.toml b/crates/context/interface/Cargo.toml index 4c9834396c..1e5ba0bfea 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" +version = "1.1.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/database/CHANGELOG.md b/crates/database/CHANGELOG.md index c2d72f4c3f..e7cff5dcd5 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.1](https://github.com/bluealloy/revm/compare/revm-database-v1.0.0...revm-database-v1.0.1) - 2025-03-28 + +### Other + +- make number more readable ([#2300](https://github.com/bluealloy/revm/pull/2300)) + ## [1.0.0](https://github.com/bluealloy/revm/compare/revm-database-v1.0.0-alpha.5...revm-database-v1.0.0) - 2025-03-24 ### Other diff --git a/crates/database/Cargo.toml b/crates/database/Cargo.toml index aa53edc842..fea23a4196 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" +version = "1.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 0fa9147dcb..aa61434644 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.1](https://github.com/bluealloy/revm/compare/revm-database-interface-v1.0.0...revm-database-interface-v1.0.1) - 2025-03-28 + +### Other + +- Propagate asyncdb feature flag from database-interface to revm ([#2310](https://github.com/bluealloy/revm/pull/2310)) + ## [1.0.0](https://github.com/bluealloy/revm/compare/revm-database-interface-v1.0.0-alpha.54...revm-database-interface-v1.0.0) - 2025-03-24 Stable version diff --git a/crates/database/interface/Cargo.toml b/crates/database/interface/Cargo.toml index 5500fa4e5e..a227b7a288 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" +version = "1.0.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/handler/CHANGELOG.md b/crates/handler/CHANGELOG.md index 98df01d204..866196b51d 100644 --- a/crates/handler/CHANGELOG.md +++ b/crates/handler/CHANGELOG.md @@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.0](https://github.com/bluealloy/revm/compare/revm-handler-v1.0.0...revm-handler-v2.0.0) - 2025-03-28 + +### Added + +- provide more context to precompiles ([#2318](https://github.com/bluealloy/revm/pull/2318)) +- Add JournalInner ([#2311](https://github.com/bluealloy/revm/pull/2311)) + +### Fixed + +- broken disable balance check ([#2286](https://github.com/bluealloy/revm/pull/2286)) + +### Other + +- remove outdated TODO comments ([#2325](https://github.com/bluealloy/revm/pull/2325)) +- add EIP-170 contract code size limit tests ([#2312](https://github.com/bluealloy/revm/pull/2312)) +- Remove LATEST variant from SpecId enum ([#2299](https://github.com/bluealloy/revm/pull/2299)) +- add unit test for EIP-3860 initcode size limit ([#2302](https://github.com/bluealloy/revm/pull/2302)) + ## [1.0.0](https://github.com/bluealloy/revm/compare/revm-handler-v1.0.0-alpha.7...revm-handler-v1.0.0) - 2025-03-24 ### Other diff --git a/crates/handler/Cargo.toml b/crates/handler/Cargo.toml index 061f69dcdc..704c5dc301 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" +version = "2.0.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/inspector/CHANGELOG.md b/crates/inspector/CHANGELOG.md index dd7b9484d3..f8d0515c23 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.1](https://github.com/bluealloy/revm/compare/revm-inspector-v1.0.0...revm-inspector-v1.0.1) - 2025-03-28 + +### Other + +- updated the following local packages: revm-primitives, revm-database-interface, revm-context, revm-database, revm-interpreter, revm-handler, revm-state + ## [1.0.0](https://github.com/bluealloy/revm/compare/revm-inspector-v1.0.0-alpha.7...revm-inspector-v1.0.0) - 2025-03-24 ### Other diff --git a/crates/inspector/Cargo.toml b/crates/inspector/Cargo.toml index d8c06e8acc..b190bccc86 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" +version = "1.0.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/interpreter/CHANGELOG.md b/crates/interpreter/CHANGELOG.md index 21e2b9614b..379db9da2e 100644 --- a/crates/interpreter/CHANGELOG.md +++ b/crates/interpreter/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [16.0.1](https://github.com/bluealloy/revm/compare/revm-interpreter-v16.0.0...revm-interpreter-v16.0.1) - 2025-03-28 + +### Other + +- remove redundant clone ([#2293](https://github.com/bluealloy/revm/pull/2293)) +- Remove LATEST variant from SpecId enum ([#2299](https://github.com/bluealloy/revm/pull/2299)) +- make number more readable ([#2300](https://github.com/bluealloy/revm/pull/2300)) + ## [16.0.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v16.0.0-alpha.7...revm-interpreter-v16.0.0) - 2025-03-24 Stable version diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index daff752980..d85f8e539f 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" +version = "16.0.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/optimism/CHANGELOG.md b/crates/optimism/CHANGELOG.md index 47754d8485..ca806c0ef1 100644 --- a/crates/optimism/CHANGELOG.md +++ b/crates/optimism/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.0](https://github.com/bluealloy/revm/compare/op-revm-v1.0.0...op-revm-v1.1.0) - 2025-03-28 + +### Added + +- Add arkworks wrapper for bls12-381 ([#2316](https://github.com/bluealloy/revm/pull/2316)) +- provide more context to precompiles ([#2318](https://github.com/bluealloy/revm/pull/2318)) +- Add a wrapper for arkworks for EIP196 ([#2305](https://github.com/bluealloy/revm/pull/2305)) + +### Fixed + +- *(isthmus)* Correctly filter refunds for deposit transactions ([#2330](https://github.com/bluealloy/revm/pull/2330)) + +### Other + +- Remove LATEST variant from SpecId enum ([#2299](https://github.com/bluealloy/revm/pull/2299)) + ## [1.0.0](https://github.com/bluealloy/revm/compare/op-revm-v1.0.0-alpha.6...op-revm-v1.0.0) - 2025-03-24 ### Other diff --git a/crates/optimism/Cargo.toml b/crates/optimism/Cargo.toml index b869b5c447..f3a7bb520b 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" +version = "1.1.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/precompile/CHANGELOG.md b/crates/precompile/CHANGELOG.md index 56eaaae406..a137e3ddde 100644 --- a/crates/precompile/CHANGELOG.md +++ b/crates/precompile/CHANGELOG.md @@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [17.1.0](https://github.com/bluealloy/revm/compare/revm-precompile-v17.0.0...revm-precompile-v17.1.0) - 2025-03-28 + +### Added + +- Add arkworks wrapper for bls12-381 ([#2316](https://github.com/bluealloy/revm/pull/2316)) +- Add a wrapper for arkworks for EIP196 ([#2305](https://github.com/bluealloy/revm/pull/2305)) + +### Other + +- Move all benchmarks into their own module like eip2537 ([#2335](https://github.com/bluealloy/revm/pull/2335)) +- add bls12-381 benchmarks ([#2327](https://github.com/bluealloy/revm/pull/2327)) +- add encode_fp function ([#2328](https://github.com/bluealloy/revm/pull/2328)) +- clean up blst wrapper doc comment and types ([#2314](https://github.com/bluealloy/revm/pull/2314)) +- Move all blst related methods into blst wrapper ([#2313](https://github.com/bluealloy/revm/pull/2313)) +- Remove LATEST variant from SpecId enum ([#2299](https://github.com/bluealloy/revm/pull/2299)) + ## [17.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v17.0.0-alpha.7...revm-precompile-v17.0.0) - 2025-03-24 ### Added diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index e39b83f667..08f77015d4 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" +version = "17.1.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index e56f574d22..b96359e355 100644 --- a/crates/primitives/CHANGELOG.md +++ b/crates/primitives/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [17.0.0](https://github.com/bluealloy/revm/compare/revm-primitives-v16.0.0...revm-primitives-v17.0.0) - 2025-03-28 + +### Other + +- Remove LATEST variant from SpecId enum ([#2299](https://github.com/bluealloy/revm/pull/2299)) +- make number more readable ([#2300](https://github.com/bluealloy/revm/pull/2300)) + ## [16.0.0](https://github.com/bluealloy/revm/compare/revm-primitives-v16.0.0-alpha.5...revm-primitives-v16.0.0) - 2025-03-24 Stable version diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 45e9d4479c..2fc47c4cc3 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" +version = "17.0.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/revm/CHANGELOG.md b/crates/revm/CHANGELOG.md index 4e38f03656..d6cd161ccd 100644 --- a/crates/revm/CHANGELOG.md +++ b/crates/revm/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [20.1.0](https://github.com/bluealloy/revm/compare/revm-v20.0.0...revm-v20.1.0) - 2025-03-28 + +### Added + +- Add JournalInner ([#2311](https://github.com/bluealloy/revm/pull/2311)) +- Add a wrapper for arkworks for EIP196 ([#2305](https://github.com/bluealloy/revm/pull/2305)) + +### Other + +- Propagate asyncdb feature flag from database-interface to revm ([#2310](https://github.com/bluealloy/revm/pull/2310)) + ## [20.0.0](https://github.com/bluealloy/revm/compare/revm-v20.0.0-alpha.7...revm-v20.0.0) - 2025-03-24 ### Other diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index dff13cf077..7191a18672 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" +version = "20.1.0" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/state/CHANGELOG.md b/crates/state/CHANGELOG.md index ea0f966f87..c6b1220662 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.1](https://github.com/bluealloy/revm/compare/revm-state-v1.0.0...revm-state-v1.0.1) - 2025-03-28 + +### Other + +- updated the following local packages: revm-primitives, revm-bytecode + ## [1.0.0](https://github.com/bluealloy/revm/compare/revm-state-v1.0.0-alpha.4...revm-state-v1.0.0) - 2025-03-24 Stable version diff --git a/crates/state/Cargo.toml b/crates/state/Cargo.toml index 74cc5ab782..06830d4a14 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" +version = "1.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 f9d9b3ac68..4e428b9079 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] +## [1.0.1](https://github.com/bluealloy/revm/compare/revm-statetest-types-v1.0.0...revm-statetest-types-v1.0.1) - 2025-03-28 + +### Other + +- updated the following local packages: revm + ## [1.0.0](https://github.com/bluealloy/revm/compare/revm-statetest-types-v1.0.0-alpha.4...revm-statetest-types-v1.0.0) - 2025-03-24 Stable version diff --git a/crates/statetest-types/Cargo.toml b/crates/statetest-types/Cargo.toml index 5fd44fb722..ca9f7ca9c7 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 = "1.0.0" +version = "1.0.1" authors.workspace = true edition.workspace = true keywords.workspace = true