Skip to content
Merged
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
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,42 @@
Because this is workspace with multi libraries, tags will be simplified, and with this document you can match version of project with git tag.

# v98
date: 10.11.2025

Patch for loading of account on storage fetch, needed for op-reth

* `revm-database`: 9.0.4 -> 9.0.5 (✓ API compatible changes)
* `op-revm`: 12.0.1 -> 12.0.2 (✓ API compatible changes)
* `revm-ee-tests`: 0.1.0
* `revm-context`: 11.0.1 -> 11.0.2
* `revm-handler`: 12.0.1 -> 12.0.2
* `revm-inspector`: 12.0.1 -> 12.0.2
* `revm`: 31.0.1 -> 31.0.2
* `revm-statetest-types`: 11.0.1 -> 11.0.2
* `revme`: 9.0.1 -> 9.0.2

# v97
date 07.11.2025

Patch release for a bug fix.

* `revm-primitives`: 21.0.1 -> 21.0.2 (✓ API compatible changes)
* `revm-context`: 11.0.0 -> 11.0.1 (✓ API compatible changes)
* `revm-statetest-types`: 11.0.0 -> 11.0.1 (✓ API compatible changes)
* `revme`: 9.0.0 -> 9.0.1 (✓ API compatible changes)
* `revm-ee-tests`: 0.1.0
* `revm-bytecode`: 7.1.0 -> 7.1.1
* `revm-state`: 8.1.0 -> 8.1.1
* `revm-database-interface`: 8.0.4 -> 8.0.5
* `revm-context-interface`: 12.0.0 -> 12.0.1
* `revm-database`: 9.0.3 -> 9.0.4
* `revm-interpreter`: 29.0.0 -> 29.0.1
* `revm-precompile`: 29.0.0 -> 29.0.1
* `revm-handler`: 12.0.0 -> 12.0.1
* `revm-inspector`: 12.0.0 -> 12.0.1
* `revm`: 31.0.0 -> 31.0.1
* `op-revm`: 12.0.0 -> 12.0.1

# v96
date 30.10.2025

Expand Down
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 @@ -41,20 +41,20 @@ default-members = ["crates/revm"]

[workspace.dependencies]
# revm
revm = { path = "crates/revm", version = "31.0.0", default-features = false }
primitives = { path = "crates/primitives", package = "revm-primitives", version = "21.0.1", default-features = false }
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "7.1.0", default-features = false }
database = { path = "crates/database", package = "revm-database", version = "9.0.3", default-features = false }
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "8.0.4", default-features = false }
state = { path = "crates/state", package = "revm-state", version = "8.1.0", default-features = false }
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "29.0.0", default-features = false }
inspector = { path = "crates/inspector", package = "revm-inspector", version = "12.0.0", default-features = false }
precompile = { path = "crates/precompile", package = "revm-precompile", version = "29.0.0", default-features = false }
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "11.0.0", default-features = false }
context = { path = "crates/context", package = "revm-context", version = "11.0.0", default-features = false }
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "12.0.0", default-features = false }
handler = { path = "crates/handler", package = "revm-handler", version = "12.0.0", default-features = false }
op-revm = { path = "crates/op-revm", package = "op-revm", version = "12.0.0", default-features = false }
revm = { path = "crates/revm", version = "31.0.2", default-features = false }
primitives = { path = "crates/primitives", package = "revm-primitives", version = "21.0.2", default-features = false }
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "7.1.1", default-features = false }
database = { path = "crates/database", package = "revm-database", version = "9.0.5", default-features = false }
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "8.0.5", default-features = false }
state = { path = "crates/state", package = "revm-state", version = "8.1.1", default-features = false }
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "29.0.1", default-features = false }
inspector = { path = "crates/inspector", package = "revm-inspector", version = "12.0.2", default-features = false }
precompile = { path = "crates/precompile", package = "revm-precompile", version = "29.0.1", default-features = false }
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "11.0.2", default-features = false }
context = { path = "crates/context", package = "revm-context", version = "11.0.2", default-features = false }
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "12.0.1", default-features = false }
handler = { path = "crates/handler", package = "revm-handler", version = "12.0.2", default-features = false }
op-revm = { path = "crates/op-revm", package = "op-revm", version = "12.0.2", default-features = false }
ee-tests = { path = "crates/ee-tests", package = "revm-ee-tests", version = "0.1.0", default-features = false }

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

## [Unreleased]

## [9.0.2](https://github.com/bluealloy/revm/compare/revme-v9.0.1...revme-v9.0.2) - 2025-11-10

### Other

- updated the following local packages: revm, revm-statetest-types

## [9.0.1](https://github.com/bluealloy/revm/compare/revme-v9.0.0...revme-v9.0.1) - 2025-11-07

### Fixed

- *(revme)* use primitive hashmap in statetest ([#3137](https://github.com/bluealloy/revm/pull/3137))

## [9.0.0](https://github.com/bluealloy/revm/compare/revme-v8.3.0...revme-v9.0.0) - 2025-10-30

### Other
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 = "9.0.0"
version = "9.0.2"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/bytecode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [7.1.1](https://github.com/bluealloy/revm/compare/revm-bytecode-v7.1.0...revm-bytecode-v7.1.1) - 2025-11-07

### Other

- updated the following local packages: revm-primitives

## [7.1.0](https://github.com/bluealloy/revm/compare/revm-bytecode-v7.0.2...revm-bytecode-v7.1.0) - 2025-10-30

### 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 = "7.1.0"
version = "7.1.1"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
12 changes: 12 additions & 0 deletions crates/context/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [11.0.2](https://github.com/bluealloy/revm/compare/revm-context-v11.0.1...revm-context-v11.0.2) - 2025-11-10

### Other

- updated the following local packages: revm-database

## [11.0.1](https://github.com/bluealloy/revm/compare/revm-context-v11.0.0...revm-context-v11.0.1) - 2025-11-07

### Other

- add test

## [11.0.0](https://github.com/bluealloy/revm/compare/revm-context-v10.1.2...revm-context-v11.0.0) - 2025-10-30

### 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 = "11.0.0"
version = "11.0.2"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/context/interface/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [12.0.1](https://github.com/bluealloy/revm/compare/revm-context-interface-v12.0.0...revm-context-interface-v12.0.1) - 2025-11-07

### Other

- updated the following local packages: revm-primitives, revm-state, revm-database-interface

## [12.0.0](https://github.com/bluealloy/revm/compare/revm-context-interface-v11.1.2...revm-context-interface-v12.0.0) - 2025-10-30

### 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 = "12.0.0"
version = "12.0.1"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
12 changes: 12 additions & 0 deletions crates/database/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [9.0.5](https://github.com/bluealloy/revm/compare/revm-database-v9.0.4...revm-database-v9.0.5) - 2025-11-10

### Fixed

- *(op)* Ensure L1Block account is always loaded ([#3150](https://github.com/bluealloy/revm/pull/3150))

## [9.0.4](https://github.com/bluealloy/revm/compare/revm-database-v9.0.3...revm-database-v9.0.4) - 2025-11-07

### Other

- updated the following local packages: revm-primitives, revm-bytecode, revm-state, revm-database-interface

## [9.0.3](https://github.com/bluealloy/revm/compare/revm-database-v9.0.2...revm-database-v9.0.3) - 2025-10-30

### Other
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 = "9.0.3"
version = "9.0.5"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/database/interface/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-database-interface-v8.0.4...revm-database-interface-v8.0.5) - 2025-11-07

### Other

- updated the following local packages: revm-primitives, revm-state

## [8.0.4](https://github.com/bluealloy/revm/compare/revm-database-interface-v8.0.3...revm-database-interface-v8.0.4) - 2025-10-30

### Other
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 = "8.0.4"
version = "8.0.5"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
12 changes: 12 additions & 0 deletions crates/handler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [12.0.2](https://github.com/bluealloy/revm/compare/revm-handler-v12.0.1...revm-handler-v12.0.2) - 2025-11-10

### Other

- updated the following local packages: revm-database, revm-context

## [12.0.1](https://github.com/bluealloy/revm/compare/revm-handler-v12.0.0...revm-handler-v12.0.1) - 2025-11-07

### Other

- updated the following local packages: revm-primitives, revm-context, revm-bytecode, revm-state, revm-database-interface, revm-context-interface, revm-database, revm-interpreter, revm-precompile

## [12.0.0](https://github.com/bluealloy/revm/compare/revm-handler-v11.2.0...revm-handler-v12.0.0) - 2025-10-30

### 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 = "12.0.0"
version = "12.0.2"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
Loading
Loading