Skip to content
Closed
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 @@ -40,20 +40,20 @@ default-members = ["crates/revm"]

[workspace.dependencies]
# revm
revm = { path = "crates/revm", version = "27.0.3", default-features = false }
primitives = { path = "crates/primitives", package = "revm-primitives", version = "20.0.0", default-features = false }
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "6.0.1", default-features = false }
database = { path = "crates/database", package = "revm-database", version = "7.0.1", default-features = false }
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "7.0.1", default-features = false }
state = { path = "crates/state", package = "revm-state", version = "7.0.1", default-features = false }
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "23.0.2", default-features = false }
inspector = { path = "crates/inspector", package = "revm-inspector", version = "8.0.3", default-features = false }
precompile = { path = "crates/precompile", package = "revm-precompile", version = "24.0.1", default-features = false }
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "8.0.4", default-features = false }
context = { path = "crates/context", package = "revm-context", version = "8.0.3", default-features = false }
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "8.0.1", default-features = false }
handler = { path = "crates/handler", package = "revm-handler", version = "8.0.3", default-features = false }
op-revm = { path = "crates/op-revm", package = "op-revm", version = "8.0.3", default-features = false }
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 }

# alloy
alloy-eip2930 = { version = "0.2.1", default-features = false }
Expand Down
16 changes: 16 additions & 0 deletions bins/revme/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [7.1.0](https://github.com/bluealloy/revm/compare/revme-v7.0.4...revme-v7.1.0) - 2025-07-23

### Added

- count inspector and bench test ([#2730](https://github.com/bluealloy/revm/pull/2730))

### Fixed

- fully deprecate serde-json ([#2767](https://github.com/bluealloy/revm/pull/2767))

### Other

- back to better map ([#2768](https://github.com/bluealloy/revm/pull/2768))
- bump develop statetests to devnet-3 ([#2754](https://github.com/bluealloy/revm/pull/2754))
- add clz_50 codspeed ([#2743](https://github.com/bluealloy/revm/pull/2743))

## [7.0.4](https://github.com/bluealloy/revm/compare/revme-v7.0.3...revme-v7.0.4) - 2025-07-14

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

## [Unreleased]

## [6.1.0](https://github.com/bluealloy/revm/compare/revm-bytecode-v6.0.1...revm-bytecode-v6.1.0) - 2025-07-23

### Added

- *(bytecode)* add version getter + make versoin dynamic ([#2751](https://github.com/bluealloy/revm/pull/2751))

### Fixed

- fully deprecate serde-json ([#2767](https://github.com/bluealloy/revm/pull/2767))

### Other

- clean up jump map ([#2764](https://github.com/bluealloy/revm/pull/2764))
- clean up bytecode analysis ([#2763](https://github.com/bluealloy/revm/pull/2763))
- Fix typo in EIP-7702 bytecode format comment (magic byte) ([#2733](https://github.com/bluealloy/revm/pull/2733))

## [6.0.1](https://github.com/bluealloy/revm/compare/revm-bytecode-v6.0.0...revm-bytecode-v6.0.1) - 2025-07-03

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

## [8.0.4](https://github.com/bluealloy/revm/compare/revm-context-v8.0.3...revm-context-v8.0.4) - 2025-07-23

### Fixed

- fully deprecate serde-json ([#2767](https://github.com/bluealloy/revm/pull/2767))

### Other

- un-Box frames ([#2761](https://github.com/bluealloy/revm/pull/2761))
- discard generic host implementation ([#2738](https://github.com/bluealloy/revm/pull/2738))

## [8.0.3](https://github.com/bluealloy/revm/compare/revm-context-v8.0.2...revm-context-v8.0.3) - 2025-07-14

### Fixed
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 = "8.0.3"
version = "8.0.4"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
11 changes: 11 additions & 0 deletions crates/context/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.0](https://github.com/bluealloy/revm/compare/revm-context-interface-v8.0.1...revm-context-interface-v9.0.0) - 2025-07-23

### Fixed

- fully deprecate serde-json ([#2767](https://github.com/bluealloy/revm/pull/2767))

### Other

- un-Box frames ([#2761](https://github.com/bluealloy/revm/pull/2761))
- discard generic host implementation ([#2738](https://github.com/bluealloy/revm/pull/2738))

## [8.0.1](https://github.com/bluealloy/revm/compare/revm-context-interface-v8.0.0...revm-context-interface-v8.0.1) - 2025-07-03

### Other
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 = "8.0.1"
version = "9.0.0"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/database/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.0.2](https://github.com/bluealloy/revm/compare/revm-database-v7.0.1...revm-database-v7.0.2) - 2025-07-23

### Other

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

## [7.0.1](https://github.com/bluealloy/revm/compare/revm-database-v7.0.0...revm-database-v7.0.1) - 2025-07-03

### 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 = "7.0.1"
version = "7.0.2"
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]

## [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

- impl DatabaseRef for WrapDatabaseRef ([#2726](https://github.com/bluealloy/revm/pull/2726))

## [7.0.1](https://github.com/bluealloy/revm/compare/revm-database-interface-v7.0.0...revm-database-interface-v7.0.1) - 2025-07-03

### 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 = "7.0.1"
version = "7.0.2"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
17 changes: 17 additions & 0 deletions crates/handler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ 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

### Added

- add a way for precompiles to revert ([#2711](https://github.com/bluealloy/revm/pull/2711))

### Fixed

- fully deprecate serde-json ([#2767](https://github.com/bluealloy/revm/pull/2767))
- system call should have 30M gas limit ([#2755](https://github.com/bluealloy/revm/pull/2755))
- gas deduction with `disable_balance_check` ([#2699](https://github.com/bluealloy/revm/pull/2699))

### Other

- change gas parameter to immutable reference ([#2702](https://github.com/bluealloy/revm/pull/2702))
- remove State bound from JournalTr in Handler::Evm ([#2715](https://github.com/bluealloy/revm/pull/2715))

## [8.0.3](https://github.com/bluealloy/revm/compare/revm-handler-v8.0.2...revm-handler-v8.0.3) - 2025-07-14

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

## [Unreleased]

## [8.1.0](https://github.com/bluealloy/revm/compare/revm-inspector-v8.0.3...revm-inspector-v8.1.0) - 2025-07-23

### Added

- count inspector and bench test ([#2730](https://github.com/bluealloy/revm/pull/2730))

### Fixed

- fully deprecate serde-json ([#2767](https://github.com/bluealloy/revm/pull/2767))
- features and check in ci ([#2766](https://github.com/bluealloy/revm/pull/2766))

### Other

- *(inspector)* simplify create_end docs and intrp.bytecode.set_action ([#2723](https://github.com/bluealloy/revm/pull/2723))
- *(inspector)* update obsolete current_opcode() comment ([#2722](https://github.com/bluealloy/revm/pull/2722))

## [8.0.3](https://github.com/bluealloy/revm/compare/revm-inspector-v8.0.2...revm-inspector-v8.0.3) - 2025-07-14

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