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

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

2 changes: 1 addition & 1 deletion bins/revm-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
bytes = "1.4"
hex = "0.4"
revm = { path = "../../crates/revm", version = "6.1.0",default-features=false }
revm = { path = "../../crates/revm", version = "6.2.0",default-features=false }
microbench = "0.5"
alloy-sol-macro = "0.6.3"
alloy-sol-types = "0.6.3"
Expand Down
5 changes: 5 additions & 0 deletions bins/revme/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.3](https://github.com/TigerInYourDream/revm/compare/revme-v0.2.2...revme-v0.2.3) - 2024-02-27

### Other
- updated the following local packages: revm

## [0.2.2](https://github.com/bluealloy/revm/compare/revme-v0.2.1...revme-v0.2.2) - 2024-02-22

### Added
Expand Down
4 changes: 2 additions & 2 deletions bins/revme/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ keywords = ["ethereum", "evm"]
license = "MIT"
repository = "https://github.com/bluealloy/revm"
description = "Rust Ethereum Virtual Machine Executable"
version = "0.2.2"
version = "0.2.3"

[dependencies]
hash-db = "0.15"
hashbrown = "0.14"
indicatif = "0.17"
plain_hasher = "0.2"
revm = { path = "../../crates/revm", version = "6.1.0", default-features = false, features = [
revm = { path = "../../crates/revm", version = "6.2.0", default-features = false, features = [
"ethersdb",
"std",
"serde-json",
Expand Down
10 changes: 10 additions & 0 deletions crates/revm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [6.2.0](https://github.com/TigerInYourDream/revm/compare/revm-v6.1.0...revm-v6.2.0) - 2024-02-27

### Added
- add with_handler method to EvmBuilder ([#1124](https://github.com/TigerInYourDream/revm/pull/1124))

### Other
- add ToString for no_std add exports some types in no_std ([#1128](https://github.com/TigerInYourDream/revm/pull/1128))
- Add `clone` method to `ContextWithHandlerCfg` ([#1127](https://github.com/TigerInYourDream/revm/pull/1127))
- remove unused EvmInstructionTables type alias ([#1123](https://github.com/TigerInYourDream/revm/pull/1123))

## [6.1.0](https://github.com/bluealloy/revm/compare/revm-v6.0.0...revm-v6.1.0) - 2024-02-22

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/revm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ keywords = ["no_std", "ethereum", "evm", "revm"]
license = "MIT"
name = "revm"
repository = "https://github.com/bluealloy/revm"
version = "6.1.0"
version = "6.2.0"
readme = "../../README.md"

[package.metadata.docs.rs]
Expand Down