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

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

18 changes: 9 additions & 9 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.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.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 }
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "24.0.1", 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 = "26.0.0", 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 = "9.0.0", default-features = false }
op-revm = { path = "crates/op-revm", package = "op-revm", version = "9.0.0", default-features = false }

# alloy
alloy-eip2930 = { version = "0.2.1", default-features = false }
Expand Down
6 changes: 6 additions & 0 deletions bins/revme/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,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/revme-v7.1.0...revme-v7.1.1) - 2025-07-24

### Other

- add gas_limit to revme evm ([#2779](https://github.com/bluealloy/revm/pull/2779))

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

### 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 = "7.1.0"
version = "7.1.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]

## [8.0.5](https://github.com/bluealloy/revm/compare/revm-context-v8.0.4...revm-context-v8.0.5) - 2025-07-24

### Other

- updated the following local packages: revm-context-interface

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

### 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.4"
version = "8.0.5"
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]

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

### Fixed

- swapped comments for db and db_mut methods in JournalTr trait ([#2774](https://github.com/bluealloy/revm/pull/2774))

## [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
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 = "9.0.0"
version = "9.0.1"
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 @@ -6,6 +6,12 @@ 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).


## [9.0.0](https://github.com/bluealloy/revm/compare/revm-handler-v8.1.0...revm-handler-v9.0.0) - 2025-07-24

### Other

- Add dyn Crypto trait to PrecompileFn ([#2772](https://github.com/bluealloy/revm/pull/2772))

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

### 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 = "8.1.0"
version = "9.0.0"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/inspector/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.1.1](https://github.com/bluealloy/revm/compare/revm-inspector-v8.1.0...revm-inspector-v8.1.1) - 2025-07-24

### Other

- updated the following local packages: revm-handler, revm-context, revm-interpreter

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

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

## [Unreleased]

## [24.0.1](https://github.com/bluealloy/revm/compare/revm-interpreter-v24.0.0...revm-interpreter-v24.0.1) - 2025-07-24

### Other

- updated the following local packages: revm-context-interface

## [24.0.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v23.0.2...revm-interpreter-v24.0.0) - 2025-07-23

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/interpreter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "revm-interpreter"
description = "Revm Interpreter that executes bytecode."
version = "24.0.0"
version = "24.0.1"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/op-revm/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]

## [9.0.0](https://github.com/bluealloy/revm/compare/op-revm-v8.1.0...op-revm-v9.0.0) - 2025-07-24

### Other

- 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
Expand Down
2 changes: 1 addition & 1 deletion crates/op-revm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "op-revm"
description = "Optimism variant of Revm"
version = "8.1.0"
version = "9.0.0"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/precompile/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [26.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v25.0.0...revm-precompile-v26.0.0) - 2025-07-24

### Other

- Add dyn Crypto trait to PrecompileFn ([#2772](https://github.com/bluealloy/revm/pull/2772))

## [25.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v24.0.1...revm-precompile-v25.0.0) - 2025-07-23

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

## [Unreleased]

## [27.1.1](https://github.com/bluealloy/revm/compare/revm-v27.1.0...revm-v27.1.1) - 2025-07-24

### Other

- updated the following local packages: revm-context-interface, revm-precompile, revm-handler, revm-context, revm-interpreter, revm-inspector

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

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/revm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 6 additions & 0 deletions crates/statetest-types/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.6](https://github.com/bluealloy/revm/compare/revm-statetest-types-v8.0.5...revm-statetest-types-v8.0.6) - 2025-07-24

### Other

- updated the following local packages: revm

## [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
Expand Down
2 changes: 1 addition & 1 deletion crates/statetest-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down