diff --git a/Cargo.lock b/Cargo.lock index 78488c542c..3ca56aa529 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3034,7 +3034,7 @@ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e" [[package]] name = "op-revm" -version = "8.1.0" +version = "8.1.1" dependencies = [ "alloy-primitives", "alloy-sol-types", @@ -3772,7 +3772,7 @@ dependencies = [ [[package]] name = "revm" -version = "27.1.0" +version = "27.1.1" dependencies = [ "revm-bytecode", "revm-context", @@ -3791,7 +3791,7 @@ dependencies = [ [[package]] name = "revm-bytecode" -version = "6.1.0" +version = "6.1.1" dependencies = [ "bitvec", "paste", @@ -3802,7 +3802,7 @@ dependencies = [ [[package]] name = "revm-context" -version = "8.0.4" +version = "8.0.5" dependencies = [ "cfg-if", "derive-where", @@ -3817,7 +3817,7 @@ dependencies = [ [[package]] name = "revm-context-interface" -version = "9.0.0" +version = "9.0.1" dependencies = [ "alloy-eip2930", "alloy-eip7702", @@ -3831,7 +3831,7 @@ dependencies = [ [[package]] name = "revm-database" -version = "7.0.2" +version = "7.0.3" dependencies = [ "alloy-eips", "alloy-provider", @@ -3849,7 +3849,7 @@ dependencies = [ [[package]] name = "revm-database-interface" -version = "7.0.2" +version = "7.0.3" dependencies = [ "anyhow", "auto_impl", @@ -3863,7 +3863,7 @@ dependencies = [ [[package]] name = "revm-handler" -version = "8.1.0" +version = "8.1.1" dependencies = [ "alloy-eip7702", "alloy-provider", @@ -3885,7 +3885,7 @@ dependencies = [ [[package]] name = "revm-inspector" -version = "8.1.0" +version = "8.1.1" dependencies = [ "auto_impl", "either", @@ -3902,7 +3902,7 @@ dependencies = [ [[package]] name = "revm-interpreter" -version = "24.0.0" +version = "25.0.0" dependencies = [ "bincode 2.0.1", "revm-bytecode", @@ -3913,7 +3913,7 @@ dependencies = [ [[package]] name = "revm-precompile" -version = "25.0.0" +version = "25.0.1" dependencies = [ "ark-bls12-381", "ark-bn254", @@ -3943,7 +3943,7 @@ dependencies = [ [[package]] name = "revm-primitives" -version = "20.1.0" +version = "20.1.1" dependencies = [ "alloy-primitives", "num_enum", @@ -3953,7 +3953,7 @@ dependencies = [ [[package]] name = "revm-state" -version = "7.0.2" +version = "7.0.3" dependencies = [ "bitflags", "revm-bytecode", @@ -3963,7 +3963,7 @@ dependencies = [ [[package]] name = "revm-statetest-types" -version = "8.0.5" +version = "8.0.6" dependencies = [ "k256", "revm", @@ -3974,7 +3974,7 @@ dependencies = [ [[package]] name = "revme" -version = "7.1.0" +version = "7.1.1" dependencies = [ "alloy-rlp", "alloy-sol-types", diff --git a/Cargo.toml b/Cargo.toml index 6238be62ec..c2c1824569 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,20 +40,20 @@ default-members = ["crates/revm"] [workspace.dependencies] # revm -revm = { path = "crates/revm", version = "27.1.0", default-features = false } -primitives = { path = "crates/primitives", package = "revm-primitives", version = "20.1.0", default-features = false } -bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "6.1.0", default-features = false } -database = { path = "crates/database", package = "revm-database", version = "7.0.2", default-features = false } -database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "7.0.2", default-features = false } -state = { path = "crates/state", package = "revm-state", version = "7.0.2", default-features = false } -interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "24.0.0", default-features = false } -inspector = { path = "crates/inspector", package = "revm-inspector", version = "8.1.0", default-features = false } -precompile = { path = "crates/precompile", package = "revm-precompile", version = "25.0.0", default-features = false } -statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "8.0.5", default-features = false } -context = { path = "crates/context", package = "revm-context", version = "8.0.4", default-features = false } -context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "9.0.0", default-features = false } -handler = { path = "crates/handler", package = "revm-handler", version = "8.1.0", default-features = false } -op-revm = { path = "crates/op-revm", package = "op-revm", version = "8.1.0", default-features = false } +revm = { path = "crates/revm", version = "27.1.1", default-features = false } +primitives = { path = "crates/primitives", package = "revm-primitives", version = "20.1.1", default-features = false } +bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "6.1.1", default-features = false } +database = { path = "crates/database", package = "revm-database", version = "7.0.3", default-features = false } +database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "7.0.3", default-features = false } +state = { path = "crates/state", package = "revm-state", version = "7.0.3", default-features = false } +interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "25.0.0", default-features = false } +inspector = { path = "crates/inspector", package = "revm-inspector", version = "8.1.1", default-features = false } +precompile = { path = "crates/precompile", package = "revm-precompile", version = "25.0.1", default-features = false } +statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "8.0.6", default-features = false } +context = { path = "crates/context", package = "revm-context", version = "8.0.5", default-features = false } +context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "9.0.1", default-features = false } +handler = { path = "crates/handler", package = "revm-handler", version = "8.1.1", default-features = false } +op-revm = { path = "crates/op-revm", package = "op-revm", version = "8.1.1", 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 3932b96718..54d281521f 100644 --- a/bins/revme/CHANGELOG.md +++ b/bins/revme/CHANGELOG.md @@ -1,4 +1,20 @@ # Changelog + +All notable changes to this project will be documented in this file. + +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). + +## [Unreleased] + +## [7.1.1](https://github.com/bluealloy/revm/compare/revme-v7.1.0...revme-v7.1.1) - 2025-07-25 + +### Other + +- add rust-version and note about MSRV ([#2789](https://github.com/bluealloy/revm/pull/2789)) +- fix clippy ([#2785](https://github.com/bluealloy/revm/pull/2785)) +- add gas_limit to revme evm ([#2779](https://github.com/bluealloy/revm/pull/2779)) +# Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), diff --git a/bins/revme/Cargo.toml b/bins/revme/Cargo.toml index d35a1bc3d2..2db21f9aeb 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.1.0" +version = "7.1.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/bytecode/CHANGELOG.md b/crates/bytecode/CHANGELOG.md index 9c484b890e..b2b16f92a0 100644 --- a/crates/bytecode/CHANGELOG.md +++ b/crates/bytecode/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [6.1.1](https://github.com/bluealloy/revm/compare/revm-bytecode-v6.1.0...revm-bytecode-v6.1.1) - 2025-07-25 + +### Other + +- add rust-version and note about MSRV ([#2789](https://github.com/bluealloy/revm/pull/2789)) +- add OnceLock re-export with no_std support ([#2787](https://github.com/bluealloy/revm/pull/2787)) + ## [6.1.0](https://github.com/bluealloy/revm/compare/revm-bytecode-v6.0.1...revm-bytecode-v6.1.0) - 2025-07-23 ### Added diff --git a/crates/bytecode/Cargo.toml b/crates/bytecode/Cargo.toml index c0eaf54d4f..22b309165c 100644 --- a/crates/bytecode/Cargo.toml +++ b/crates/bytecode/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-bytecode" description = "EVM Bytecodes" -version = "6.1.0" +version = "6.1.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/context/CHANGELOG.md b/crates/context/CHANGELOG.md index 70646c5757..554978e96e 100644 --- a/crates/context/CHANGELOG.md +++ b/crates/context/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [8.0.5](https://github.com/bluealloy/revm/compare/revm-context-v8.0.4...revm-context-v8.0.5) - 2025-07-25 + +### Other + +- add rust-version and note about MSRV ([#2789](https://github.com/bluealloy/revm/pull/2789)) + ## [8.0.4](https://github.com/bluealloy/revm/compare/revm-context-v8.0.3...revm-context-v8.0.4) - 2025-07-23 ### Fixed diff --git a/crates/context/Cargo.toml b/crates/context/Cargo.toml index 6a61e6efd9..e5434bcd91 100644 --- a/crates/context/Cargo.toml +++ b/crates/context/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-context" description = "Revm context crates" -version = "8.0.4" +version = "8.0.5" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/context/interface/CHANGELOG.md b/crates/context/interface/CHANGELOG.md index 0cf77dcb7e..1512c8971e 100644 --- a/crates/context/interface/CHANGELOG.md +++ b/crates/context/interface/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [9.0.1](https://github.com/bluealloy/revm/compare/revm-context-interface-v9.0.0...revm-context-interface-v9.0.1) - 2025-07-25 + +### Fixed + +- swapped comments for db and db_mut methods in JournalTr trait ([#2774](https://github.com/bluealloy/revm/pull/2774)) + +### Other + +- add rust-version and note about MSRV ([#2789](https://github.com/bluealloy/revm/pull/2789)) + ## [9.0.0](https://github.com/bluealloy/revm/compare/revm-context-interface-v8.0.1...revm-context-interface-v9.0.0) - 2025-07-23 ### Fixed diff --git a/crates/context/interface/Cargo.toml b/crates/context/interface/Cargo.toml index 1e72618b9e..f7e98d8320 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 = "9.0.0" +version = "9.0.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/database/CHANGELOG.md b/crates/database/CHANGELOG.md index 1cfa90d7b8..d81fb90ce4 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.3](https://github.com/bluealloy/revm/compare/revm-database-v7.0.2...revm-database-v7.0.3) - 2025-07-25 + +### Other + +- add rust-version and note about MSRV ([#2789](https://github.com/bluealloy/revm/pull/2789)) + ## [7.0.2](https://github.com/bluealloy/revm/compare/revm-database-v7.0.1...revm-database-v7.0.2) - 2025-07-23 ### Other diff --git a/crates/database/Cargo.toml b/crates/database/Cargo.toml index 1424eb9bba..72c606100a 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.2" +version = "7.0.3" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/database/interface/CHANGELOG.md b/crates/database/interface/CHANGELOG.md index 1e2d3eb839..6cf3c32edf 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.3](https://github.com/bluealloy/revm/compare/revm-database-interface-v7.0.2...revm-database-interface-v7.0.3) - 2025-07-25 + +### Other + +- add rust-version and note about MSRV ([#2789](https://github.com/bluealloy/revm/pull/2789)) + ## [7.0.2](https://github.com/bluealloy/revm/compare/revm-database-interface-v7.0.1...revm-database-interface-v7.0.2) - 2025-07-23 ### Other diff --git a/crates/database/interface/Cargo.toml b/crates/database/interface/Cargo.toml index f898efb4e2..d822889615 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.2" +version = "7.0.3" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/handler/CHANGELOG.md b/crates/handler/CHANGELOG.md index 19ce478016..4b619ec3c1 100644 --- a/crates/handler/CHANGELOG.md +++ b/crates/handler/CHANGELOG.md @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file. 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). +## [Unreleased] + +## [8.1.1](https://github.com/bluealloy/revm/compare/revm-handler-v8.1.0...revm-handler-v8.1.1) - 2025-07-25 + +### Other + +- reuse global crypto provide idea ([#2786](https://github.com/bluealloy/revm/pull/2786)) +- add rust-version and note about MSRV ([#2789](https://github.com/bluealloy/revm/pull/2789)) +- Add dyn Crypto trait to PrecompileFn ([#2772](https://github.com/bluealloy/revm/pull/2772)) +# Changelog + +All notable changes to this project will be documented in this file. + +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). + ## [8.1.0](https://github.com/bluealloy/revm/compare/revm-handler-v8.0.3...revm-handler-v8.1.0) - 2025-07-23 diff --git a/crates/handler/Cargo.toml b/crates/handler/Cargo.toml index 7cb95a10a3..8fa32b4955 100644 --- a/crates/handler/Cargo.toml +++ b/crates/handler/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-handler" description = "Revm handler crates" -version = "8.1.0" +version = "8.1.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/inspector/CHANGELOG.md b/crates/inspector/CHANGELOG.md index 2c6729f593..0b3986d2ba 100644 --- a/crates/inspector/CHANGELOG.md +++ b/crates/inspector/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [8.1.1](https://github.com/bluealloy/revm/compare/revm-inspector-v8.1.0...revm-inspector-v8.1.1) - 2025-07-25 + +### Other + +- improve inspector loop ([#2776](https://github.com/bluealloy/revm/pull/2776)) +- add rust-version and note about MSRV ([#2789](https://github.com/bluealloy/revm/pull/2789)) + ## [8.1.0](https://github.com/bluealloy/revm/compare/revm-inspector-v8.0.3...revm-inspector-v8.1.0) - 2025-07-23 ### Added diff --git a/crates/inspector/Cargo.toml b/crates/inspector/Cargo.toml index 553f176b5a..4893407c3e 100644 --- a/crates/inspector/Cargo.toml +++ b/crates/inspector/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "revm-inspector" description = "Revm inspector interface" -version = "8.1.0" +version = "8.1.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/interpreter/CHANGELOG.md b/crates/interpreter/CHANGELOG.md index 473ea6dea4..d1dcc84adb 100644 --- a/crates/interpreter/CHANGELOG.md +++ b/crates/interpreter/CHANGELOG.md @@ -1,4 +1,20 @@ # Changelog + +All notable changes to this project will be documented in this file. + +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). + +## [Unreleased] + +## [25.0.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v24.0.0...revm-interpreter-v25.0.0) - 2025-07-25 + +### Other + +- improve inspector loop ([#2776](https://github.com/bluealloy/revm/pull/2776)) +- add rust-version and note about MSRV ([#2789](https://github.com/bluealloy/revm/pull/2789)) +- collapse debug info for interpreter macros ([#2780](https://github.com/bluealloy/revm/pull/2780)) +# Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index a07f25631a..da461c04f1 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 = "24.0.0" +version = "25.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 bc9d37965e..aa6d23803a 100644 --- a/crates/op-revm/CHANGELOG.md +++ b/crates/op-revm/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [8.1.1](https://github.com/bluealloy/revm/compare/op-revm-v8.1.0...op-revm-v8.1.1) - 2025-07-25 + +### Other + +- reuse global crypto provide idea ([#2786](https://github.com/bluealloy/revm/pull/2786)) +- add rust-version and note about MSRV ([#2789](https://github.com/bluealloy/revm/pull/2789)) +- add OnceLock re-export with no_std support ([#2787](https://github.com/bluealloy/revm/pull/2787)) +- Add dyn Crypto trait to PrecompileFn ([#2772](https://github.com/bluealloy/revm/pull/2772)) + ## [8.1.0](https://github.com/bluealloy/revm/compare/op-revm-v8.0.3...op-revm-v8.1.0) - 2025-07-23 ### Added diff --git a/crates/op-revm/Cargo.toml b/crates/op-revm/Cargo.toml index cd359e6f6f..2b6e6bd949 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 = "8.1.0" +version = "8.1.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/precompile/CHANGELOG.md b/crates/precompile/CHANGELOG.md index c36189fd5c..9f60051f06 100644 --- a/crates/precompile/CHANGELOG.md +++ b/crates/precompile/CHANGELOG.md @@ -1,4 +1,22 @@ # Changelog + +All notable changes to this project will be documented in this file. + +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). + +## [Unreleased] + +## [25.0.1](https://github.com/bluealloy/revm/compare/revm-precompile-v25.0.0...revm-precompile-v25.0.1) - 2025-07-25 + +### Other + +- reuse global crypto provide idea ([#2786](https://github.com/bluealloy/revm/pull/2786)) +- add rust-version and note about MSRV ([#2789](https://github.com/bluealloy/revm/pull/2789)) +- add OnceLock re-export with no_std support ([#2787](https://github.com/bluealloy/revm/pull/2787)) +- fix clippy ([#2785](https://github.com/bluealloy/revm/pull/2785)) +- Add dyn Crypto trait to PrecompileFn ([#2772](https://github.com/bluealloy/revm/pull/2772)) +# Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index e84b8f53fd..bf9306ac78 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 = "25.0.0" +version = "25.0.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index cb1711f1b7..219b7a01fb 100644 --- a/crates/primitives/CHANGELOG.md +++ b/crates/primitives/CHANGELOG.md @@ -1,4 +1,20 @@ # Changelog + +All notable changes to this project will be documented in this file. + +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). + +## [Unreleased] + +## [20.1.1](https://github.com/bluealloy/revm/compare/revm-primitives-v20.1.0...revm-primitives-v20.1.1) - 2025-07-25 + +### Other + +- reuse global crypto provide idea ([#2786](https://github.com/bluealloy/revm/pull/2786)) +- add rust-version and note about MSRV ([#2789](https://github.com/bluealloy/revm/pull/2789)) +- add OnceLock re-export with no_std support ([#2787](https://github.com/bluealloy/revm/pull/2787)) +# Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 55d3e9c548..c3e6b502cc 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.1.0" +version = "20.1.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/revm/CHANGELOG.md b/crates/revm/CHANGELOG.md index f380d29a73..87f425f05e 100644 --- a/crates/revm/CHANGELOG.md +++ b/crates/revm/CHANGELOG.md @@ -1,4 +1,19 @@ # Changelog + +All notable changes to this project will be documented in this file. + +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). + +## [Unreleased] + +## [27.1.1](https://github.com/bluealloy/revm/compare/revm-v27.1.0...revm-v27.1.1) - 2025-07-25 + +### Other + +- reuse global crypto provide idea ([#2786](https://github.com/bluealloy/revm/pull/2786)) +- add rust-version and note about MSRV ([#2789](https://github.com/bluealloy/revm/pull/2789)) +# Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index 6849bbf4d0..ed6932f675 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 = "27.1.0" +version = "27.1.1" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/state/CHANGELOG.md b/crates/state/CHANGELOG.md index 6399b58a73..0e98d594d9 100644 --- a/crates/state/CHANGELOG.md +++ b/crates/state/CHANGELOG.md @@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file. 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). +## [Unreleased] + +## [7.0.3](https://github.com/bluealloy/revm/compare/revm-state-v7.0.2...revm-state-v7.0.3) - 2025-07-25 + +### Other + +- add rust-version and note about MSRV ([#2789](https://github.com/bluealloy/revm/pull/2789)) +# Changelog + +All notable changes to this project will be documented in this file. + +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). + ## [4.0.0](https://github.com/bluealloy/revm/compare/revm-state-v3.0.1...revm-state-v4.0.0) - 2025-05-07 diff --git a/crates/state/Cargo.toml b/crates/state/Cargo.toml index efc15e41af..e6ac718259 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.2" +version = "7.0.3" authors.workspace = true edition.workspace = true keywords.workspace = true diff --git a/crates/statetest-types/CHANGELOG.md b/crates/statetest-types/CHANGELOG.md index ae820d737d..db1bf3c6dc 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] +## [8.0.6](https://github.com/bluealloy/revm/compare/revm-statetest-types-v8.0.5...revm-statetest-types-v8.0.6) - 2025-07-25 + +### Other + +- add rust-version and note about MSRV ([#2789](https://github.com/bluealloy/revm/pull/2789)) + ## [8.0.5](https://github.com/bluealloy/revm/compare/revm-statetest-types-v8.0.4...revm-statetest-types-v8.0.5) - 2025-07-23 ### Other diff --git a/crates/statetest-types/Cargo.toml b/crates/statetest-types/Cargo.toml index be5f10e420..0a03658428 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 = "8.0.5" +version = "8.0.6" authors.workspace = true edition.workspace = true keywords.workspace = true