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
14 changes: 7 additions & 7 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ default-members = ["crates/revm"]

[workspace.dependencies]
# revm
revm = { path = "crates/revm", version = "30.2.0", default-features = false }
revm = { path = "crates/revm", version = "30.2.1", 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.0.2", default-features = false }
database = { path = "crates/database", package = "revm-database", version = "9.0.2", default-features = false }
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "8.0.3", default-features = false }
state = { path = "crates/state", package = "revm-state", version = "8.0.2", default-features = false }
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "28.0.0", default-features = false }
inspector = { path = "crates/inspector", package = "revm-inspector", version = "11.2.0", default-features = false }
precompile = { path = "crates/precompile", package = "revm-precompile", version = "28.1.1", default-features = false }
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "10.2.0", default-features = false }
context = { path = "crates/context", package = "revm-context", version = "10.1.2", default-features = false }
inspector = { path = "crates/inspector", package = "revm-inspector", version = "11.2.1", 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 = "10.2.1", default-features = false }
context = { path = "crates/context", package = "revm-context", version = "10.1.3", default-features = false }
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "11.1.2", default-features = false }
handler = { path = "crates/handler", package = "revm-handler", version = "11.2.0", default-features = false }
handler = { path = "crates/handler", package = "revm-handler", version = "11.2.1", default-features = false }
op-revm = { path = "crates/op-revm", package = "op-revm", version = "11.2.0", default-features = false }
ee-tests = { path = "crates/ee-tests", package = "revm-ee-tests", version = "0.1.0", default-features = false }

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

## [Unreleased]

## [8.3.1](https://github.com/Soubhik-10/revm/compare/revme-v8.3.0...revme-v8.3.1) - 2025-10-18

### Other

- consolidate revme imports ([#3088](https://github.com/Soubhik-10/revm/pull/3088))
- Update blockchaintest.rs ([#3107](https://github.com/Soubhik-10/revm/pull/3107))
- typo eip4788 ([#3111](https://github.com/Soubhik-10/revm/pull/3111))

## [8.3.0](https://github.com/bluealloy/revm/compare/revme-v8.2.2...revme-v8.3.0) - 2025-10-17

### 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 = "8.3.0"
version = "8.3.1"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/context/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]

## [10.1.3](https://github.com/Soubhik-10/revm/compare/revm-context-v10.1.2...revm-context-v10.1.3) - 2025-10-18

### Other

- journal transfer fn cleanup ([#3085](https://github.com/Soubhik-10/revm/pull/3085))

## [10.1.2](https://github.com/bluealloy/revm/compare/revm-context-v10.1.1...revm-context-v10.1.2) - 2025-10-15

### Other
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 = "10.1.2"
version = "10.1.3"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/handler/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]

## [11.2.1](https://github.com/Soubhik-10/revm/compare/revm-handler-v11.2.0...revm-handler-v11.2.1) - 2025-10-18

### Other

- remove redundant alloy-eip7702 from handler dev-dependencies ([#3105](https://github.com/Soubhik-10/revm/pull/3105))

## [11.2.0](https://github.com/bluealloy/revm/compare/revm-handler-v11.1.2...revm-handler-v11.2.0) - 2025-10-17

### 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 = "11.2.0"
version = "11.2.1"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
7 changes: 7 additions & 0 deletions crates/inspector/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.2.1](https://github.com/Soubhik-10/revm/compare/revm-inspector-v11.2.0...revm-inspector-v11.2.1) - 2025-10-18

### Other

- remove redundant alloy-eip7702 from handler dev-dependencies ([#3105](https://github.com/Soubhik-10/revm/pull/3105))
- *(inspector)* remove redundant EthInterpreter import in either.rs ([#3093](https://github.com/Soubhik-10/revm/pull/3093))

## [11.2.0](https://github.com/bluealloy/revm/compare/revm-inspector-v11.1.2...revm-inspector-v11.2.0) - 2025-10-17

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