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
12 changes: 6 additions & 6 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 @@ -42,14 +42,14 @@ default-members = ["crates/revm"]
[workspace.dependencies]
# revm
revm = { path = "crates/revm", version = "29.0.0", default-features = false }
primitives = { path = "crates/primitives", package = "revm-primitives", version = "20.2.1", default-features = false }
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "6.2.2", default-features = false }
database = { path = "crates/database", package = "revm-database", version = "7.0.5", default-features = false }
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "7.0.5", default-features = false }
state = { path = "crates/state", package = "revm-state", version = "7.0.5", default-features = false }
primitives = { path = "crates/primitives", package = "revm-primitives", version = "21.0.0", default-features = false }
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "6.2.3", default-features = false }
database = { path = "crates/database", package = "revm-database", version = "7.0.6", default-features = false }
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "7.0.6", default-features = false }
state = { path = "crates/state", package = "revm-state", version = "7.0.6", default-features = false }
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "25.0.2", default-features = false }
inspector = { path = "crates/inspector", package = "revm-inspector", version = "10.0.0", default-features = false }
precompile = { path = "crates/precompile", package = "revm-precompile", version = "27.0.0", default-features = false }
precompile = { path = "crates/precompile", package = "revm-precompile", version = "28.0.0", default-features = false }
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "9.0.2", default-features = false }
context = { path = "crates/context", package = "revm-context", version = "9.0.2", default-features = false }
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "10.1.0", default-features = false }
Expand Down
12 changes: 12 additions & 0 deletions crates/bytecode/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]

## [6.2.3](https://github.com/tynes/revm/compare/revm-bytecode-v6.2.2...revm-bytecode-v6.2.3) - 2025-09-26

### Fixed

- *(bytecode)* exclude MLOAD from modifies_memory and update test ([#3004](https://github.com/tynes/revm/pull/3004))
- Apply spelling corrections from PRs #2926, #2915, #2908 ([#2978](https://github.com/tynes/revm/pull/2978))

### Other

- use offset_from_unsigned ([#2999](https://github.com/tynes/revm/pull/2999))
- add SECURITY.md ([#2956](https://github.com/tynes/revm/pull/2956))

## [6.2.2](https://github.com/bluealloy/revm/compare/revm-bytecode-v6.2.1...revm-bytecode-v6.2.2) - 2025-08-23

### 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.2.2"
version = "6.2.3"
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]

## [7.0.6](https://github.com/tynes/revm/compare/revm-database-v7.0.5...revm-database-v7.0.6) - 2025-09-26

### Fixed

- Apply spelling corrections from PRs #2926, #2915, #2908 ([#2978](https://github.com/tynes/revm/pull/2978))

### Other

- pretty print state in revme statetest ([#2979](https://github.com/tynes/revm/pull/2979))
- *(database)* avoid panic by conditionally using block_in_place ([#2927](https://github.com/tynes/revm/pull/2927))
- add SECURITY.md ([#2956](https://github.com/tynes/revm/pull/2956))

## [7.0.5](https://github.com/bluealloy/revm/compare/revm-database-v7.0.4...revm-database-v7.0.5) - 2025-08-23

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

## [7.0.6](https://github.com/tynes/revm/compare/revm-database-interface-v7.0.5...revm-database-interface-v7.0.6) - 2025-09-26

### Fixed

- Apply spelling corrections from PRs #2926, #2915, #2908 ([#2978](https://github.com/tynes/revm/pull/2978))

### Other

- *(database)* avoid panic by conditionally using block_in_place ([#2927](https://github.com/tynes/revm/pull/2927))
- add SECURITY.md ([#2956](https://github.com/tynes/revm/pull/2956))

## [7.0.5](https://github.com/bluealloy/revm/compare/revm-database-interface-v7.0.4...revm-database-interface-v7.0.5) - 2025-08-23

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

## [Unreleased]

## [28.0.0](https://github.com/tynes/revm/compare/revm-precompile-v27.0.0...revm-precompile-v28.0.0) - 2025-09-26

### Added

- [**breaking**] Remove kzg-rs ([#2909](https://github.com/tynes/revm/pull/2909))

### Fixed

- racecondition return on install_crypto fn ([#2997](https://github.com/tynes/revm/pull/2997))
- Apply spelling corrections from PRs #2926, #2915, #2908 ([#2978](https://github.com/tynes/revm/pull/2978))

### Other

- Remove libsecp256k1 parity lib ([#2954](https://github.com/tynes/revm/pull/2954))
- add SECURITY.md ([#2956](https://github.com/tynes/revm/pull/2956))
- add amsterdam in spec id ([#2934](https://github.com/tynes/revm/pull/2934))
- cargo update ([#2930](https://github.com/tynes/revm/pull/2930))
- *(precompile)* add new specific `PrecompileError` variants ([#2907](https://github.com/tynes/revm/pull/2907))
- add Precompil::into_precompile ([#2913](https://github.com/tynes/revm/pull/2913))

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

## [Unreleased]

## [21.0.0](https://github.com/tynes/revm/compare/revm-primitives-v20.2.1...revm-primitives-v21.0.0) - 2025-09-26

### Added

- *(revme)* ef blockchain tests cli ([#2935](https://github.com/tynes/revm/pull/2935))

### Fixed

- racecondition return on install_crypto fn ([#2997](https://github.com/tynes/revm/pull/2997))
- Apply spelling corrections from PRs #2926, #2915, #2908 ([#2978](https://github.com/tynes/revm/pull/2978))

### Other

- add SECURITY.md ([#2956](https://github.com/tynes/revm/pull/2956))
- add amsterdam in spec id ([#2934](https://github.com/tynes/revm/pull/2934))
- *(cleanup)* Remove EIP-7918 related functions and EIP file ([#2925](https://github.com/tynes/revm/pull/2925))
- cargo update ([#2930](https://github.com/tynes/revm/pull/2930))

## [20.1.0](https://github.com/bluealloy/revm/compare/revm-primitives-v20.0.0...revm-primitives-v20.1.0) - 2025-07-23

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "revm-primitives"
description = "Revm primitives types"
version = "20.2.1"
version = "21.0.0"
authors.workspace = true
edition.workspace = true
keywords.workspace = true
Expand Down
13 changes: 13 additions & 0 deletions crates/state/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,19 @@ Dependency bump

## [Unreleased]

## [7.0.6](https://github.com/tynes/revm/compare/revm-state-v7.0.5...revm-state-v7.0.6) - 2025-09-26

### Fixed

- Apply spelling corrections from PRs #2926, #2915, #2908 ([#2978](https://github.com/tynes/revm/pull/2978))
- skip cold load on oog ([#2903](https://github.com/tynes/revm/pull/2903))

### Other

- *(state)* remove unnecessary core::hash::Hash import from lib.rs ([#2959](https://github.com/tynes/revm/pull/2959))
- add SECURITY.md ([#2956](https://github.com/tynes/revm/pull/2956))
- use primitives::HashMap default ([#2916](https://github.com/tynes/revm/pull/2916))

## [7.0.2](https://github.com/bluealloy/revm/compare/revm-state-v7.0.1...revm-state-v7.0.2) - 2025-07-23

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