Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,20 +42,20 @@ default-members = ["crates/revm"]

[workspace.dependencies]
# revm
revm = { path = "crates/revm", version = "34.0.0", default-features = false }
primitives = { path = "crates/primitives", package = "revm-primitives", version = "22.0.0", default-features = false }
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "8.0.0", default-features = false }
database = { path = "crates/database", package = "revm-database", version = "10.0.0", default-features = false }
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "9.0.0", default-features = false }
state = { path = "crates/state", package = "revm-state", version = "9.0.0", default-features = false }
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "32.0.0", default-features = false }
inspector = { path = "crates/inspector", package = "revm-inspector", version = "15.0.0", default-features = false }
precompile = { path = "crates/precompile", package = "revm-precompile", version = "32.0.0", default-features = false }
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "14.0.0", default-features = false }
context = { path = "crates/context", package = "revm-context", version = "13.0.0", default-features = false }
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "14.0.0", default-features = false }
handler = { path = "crates/handler", package = "revm-handler", version = "15.0.0", default-features = false }
op-revm = { path = "crates/op-revm", package = "op-revm", version = "15.0.0", default-features = false }
revm = { path = "crates/revm", version = "34.0.1", default-features = false }
primitives = { path = "crates/primitives", package = "revm-primitives", version = "22.1.0", default-features = false }
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "9.0.0", default-features = false }
database = { path = "crates/database", package = "revm-database", version = "10.1.0", default-features = false }
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "9.0.1", default-features = false }
state = { path = "crates/state", package = "revm-state", version = "10.0.0", default-features = false }
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "33.0.0", default-features = false }
inspector = { path = "crates/inspector", package = "revm-inspector", version = "15.0.1", default-features = false }
precompile = { path = "crates/precompile", package = "revm-precompile", version = "32.0.1", default-features = false }
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "15.0.0", default-features = false }
context = { path = "crates/context", package = "revm-context", version = "14.0.0", default-features = false }
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "15.0.0", default-features = false }
handler = { path = "crates/handler", package = "revm-handler", version = "16.0.0", default-features = false }
op-revm = { path = "crates/op-revm", package = "op-revm", version = "15.0.1", default-features = false }
ee-tests = { path = "crates/ee-tests", package = "revm-ee-tests", version = "0.1.0", default-features = false }

# alloy
Expand Down
7 changes: 7 additions & 0 deletions bins/revme/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [11.0.1](https://github.com/malik672/revm/compare/revme-v11.0.0...revme-v11.0.1) - 2026-02-06

### Other

- use fixed bytes hashmaps from alloy-core ([#3358](https://github.com/malik672/revm/pull/3358))
- update default hardfork to Osaka (Ethereum) and Jovian (Optimism) ([#3326](https://github.com/malik672/revm/pull/3326))

## [11.0.0](https://github.com/bluealloy/revm/compare/revme-v10.0.2...revme-v11.0.0) - 2026-01-15

### Added
Expand Down
2 changes: 1 addition & 1 deletion bins/revme/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "revme"
description = "Rust Ethereum Virtual Machine Executable"
version = "11.0.0"
version = "11.0.1"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
20 changes: 20 additions & 0 deletions crates/bytecode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [9.0.0](https://github.com/malik672/revm/compare/revm-bytecode-v8.0.0...revm-bytecode-v9.0.0) - 2026-02-06

### Added

- Implement EIP-7843 SLOTNUM opcode for Amsterdam ([#3340](https://github.com/malik672/revm/pull/3340))
- Implement EIP-8024 for Amsterdam ([#3223](https://github.com/malik672/revm/pull/3223))

### Fixed

- *(bytecode)* add padding for final opcode missing immediates ([#3338](https://github.com/malik672/revm/pull/3338))
- *(bytecode)* improve analyze_legacy and stack tests ([#3335](https://github.com/malik672/revm/pull/3335))
- the LOG[0-4] CREATE CREATE2 opcode can modify memory ([#3328](https://github.com/malik672/revm/pull/3328))
- *(bytecode)* improve analyze_legacy padding for SWAPN/DUPN/EXCHANGE ([#3332](https://github.com/malik672/revm/pull/3332))

### Other

- [**breaking**] flatten Bytecode ([#3375](https://github.com/malik672/revm/pull/3375))
- remove GPL mention and update gmp feature comments ([#3383](https://github.com/malik672/revm/pull/3383))
- *(tests)* remove redundant clones in legacy analysis tests ([#3317](https://github.com/malik672/revm/pull/3317))

## [8.0.0](https://github.com/bluealloy/revm/compare/revm-bytecode-v7.1.1...revm-bytecode-v8.0.0) - 2026-01-15

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/bytecode/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "revm-bytecode"
description = "EVM Bytecodes"
version = "8.0.0"
version = "9.0.0"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
21 changes: 21 additions & 0 deletions crates/context/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [14.0.0](https://github.com/malik672/revm/compare/revm-context-v13.0.0...revm-context-v14.0.0) - 2026-02-06

### Added

- *(gas_params)* add configurable EIP-7702 auth refund ([#3366](https://github.com/malik672/revm/pull/3366))
- *(gas)* add tx_access_list_cost helper to GasParams ([#3349](https://github.com/malik672/revm/pull/3349))
- Implement EIP-7843 SLOTNUM opcode for Amsterdam ([#3340](https://github.com/malik672/revm/pull/3340))
- Implement EIP-7708 ETH transfers emit a log ([#3334](https://github.com/malik672/revm/pull/3334))

### Fixed

- *(journal)* emit EIP-7708 log for selfdestructed accounts with remaining balance ([#3394](https://github.com/malik672/revm/pull/3394))

### Other

- [**breaking**] flatten Bytecode ([#3375](https://github.com/malik672/revm/pull/3375))
- remove GPL mention and update gmp feature comments ([#3383](https://github.com/malik672/revm/pull/3383))
- mark journal entry functions as deprecated ([#3367](https://github.com/malik672/revm/pull/3367))
- use fixed bytes hashmaps from alloy-core ([#3358](https://github.com/malik672/revm/pull/3358))
- *(handler)* extract duplicate ContextError handling ([#3312](https://github.com/malik672/revm/pull/3312))

## [13.0.0](https://github.com/bluealloy/revm/compare/revm-context-v12.1.0...revm-context-v13.0.0) - 2026-01-15

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/context/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "revm-context"
description = "Revm context crates"
version = "13.0.0"
version = "14.0.0"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
21 changes: 21 additions & 0 deletions crates/context/interface/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [15.0.0](https://github.com/malik672/revm/compare/revm-context-interface-v14.0.0...revm-context-interface-v15.0.0) - 2026-02-06

### Added

- *(gas_params)* add configurable EIP-7702 auth refund ([#3366](https://github.com/malik672/revm/pull/3366))
- *(gas)* add tx_access_list_cost helper to GasParams ([#3349](https://github.com/malik672/revm/pull/3349))
- Implement EIP-7843 SLOTNUM opcode for Amsterdam ([#3340](https://github.com/malik672/revm/pull/3340))

### Fixed

- *(journal)* emit EIP-7708 log for selfdestructed accounts with remaining balance ([#3394](https://github.com/malik672/revm/pull/3394))
- use provided code hash when setting account code ([#3324](https://github.com/malik672/revm/pull/3324))

### Other

- [**breaking**] flatten Bytecode ([#3375](https://github.com/malik672/revm/pull/3375))
- remove GPL mention and update gmp feature comments ([#3383](https://github.com/malik672/revm/pull/3383))
- mark journal entry functions as deprecated ([#3367](https://github.com/malik672/revm/pull/3367))
- use fixed bytes hashmaps from alloy-core ([#3358](https://github.com/malik672/revm/pull/3358))
- *(handler)* extract duplicate ContextError handling ([#3312](https://github.com/malik672/revm/pull/3312))

## [14.0.0](https://github.com/bluealloy/revm/compare/revm-context-interface-v13.1.0...revm-context-interface-v14.0.0) - 2026-01-15

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/context/interface/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "revm-context-interface"
description = "Revm context interface crates"
version = "14.0.0"
version = "15.0.0"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
22 changes: 22 additions & 0 deletions crates/database/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [10.1.0](https://github.com/malik672/revm/compare/revm-database-v10.0.0...revm-database-v10.1.0) - 2026-02-06

### Added

- *(database)* add clear() to CacheState and TransitionState ([#3390](https://github.com/malik672/revm/pull/3390))
- *(database)* add iter and lowest helpers to BlockHashCache ([#3352](https://github.com/malik672/revm/pull/3352))
- *(database)* add StateBuilder::with_bal_builder_if ([#3351](https://github.com/malik672/revm/pull/3351))
- *(database)* add storage getter to BundleState ([#3321](https://github.com/malik672/revm/pull/3321))

### Fixed

- *(db)* use self.storage() in storage_by_account_id to avoid cache bypass ([#3385](https://github.com/malik672/revm/pull/3385))
- *(bal)* fix populated account if pre-state was none ([#3357](https://github.com/malik672/revm/pull/3357))
- *(database)* BlockHashCache incorrectly returns zero for block 0 ([#3319](https://github.com/malik672/revm/pull/3319))

### Other

- reserve capacity in add_transitions ([#3373](https://github.com/malik672/revm/pull/3373))
- remove GPL mention and update gmp feature comments ([#3383](https://github.com/malik672/revm/pull/3383))
- use fixed bytes hashmaps from alloy-core ([#3358](https://github.com/malik672/revm/pull/3358))
- Use O(1) ring buffer cache for block hashes instead of BTreeMap ([#3299](https://github.com/malik672/revm/pull/3299))

## [10.0.0](https://github.com/bluealloy/revm/compare/revm-database-v9.0.6...revm-database-v10.0.0) - 2026-01-15

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/database/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "revm-database"
description = "Revm Database implementations"
version = "10.0.0"
version = "10.1.0"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
11 changes: 11 additions & 0 deletions crates/database/interface/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [9.0.1](https://github.com/malik672/revm/compare/revm-database-interface-v9.0.0...revm-database-interface-v9.0.1) - 2026-02-06

### Fixed

- *(bal)* fix populated account if pre-state was none ([#3357](https://github.com/malik672/revm/pull/3357))

### Other

- remove GPL mention and update gmp feature comments ([#3383](https://github.com/malik672/revm/pull/3383))
- use fixed bytes hashmaps from alloy-core ([#3358](https://github.com/malik672/revm/pull/3358))

## [9.0.0](https://github.com/bluealloy/revm/compare/revm-database-interface-v8.0.5...revm-database-interface-v9.0.0) - 2026-01-15

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/database/interface/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "revm-database-interface"
description = "Revm Database interface"
version = "9.0.0"
version = "9.0.1"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions crates/handler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [16.0.0](https://github.com/malik672/revm/compare/revm-handler-v15.0.0...revm-handler-v16.0.0) - 2026-02-06

### Added

- *(gas_params)* add configurable EIP-7702 auth refund ([#3366](https://github.com/malik672/revm/pull/3366))

### Other

- [**breaking**] flatten Bytecode ([#3375](https://github.com/malik672/revm/pull/3375))
- remove GPL mention and update gmp feature comments ([#3383](https://github.com/malik672/revm/pull/3383))
- use fixed bytes hashmaps from alloy-core ([#3358](https://github.com/malik672/revm/pull/3358))
- *(handler)* extract duplicate ContextError handling ([#3312](https://github.com/malik672/revm/pull/3312))
- *(revm-handler)* add ItemOrResult::map_item (alias map_frame) ([#3320](https://github.com/malik672/revm/pull/3320))

## [15.0.0](https://github.com/bluealloy/revm/compare/revm-handler-v14.1.0...revm-handler-v15.0.0) - 2026-01-15

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/handler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "revm-handler"
description = "Revm handler crates"
version = "15.0.0"
version = "16.0.0"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
Loading