Skip to content

Commit dd1fee8

Browse files
chore: release (#2873)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 0e54e91 commit dd1fee8

File tree

32 files changed

+148
-44
lines changed

32 files changed

+148
-44
lines changed

Cargo.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -41,20 +41,20 @@ default-members = ["crates/revm"]
4141

4242
[workspace.dependencies]
4343
# revm
44-
revm = { path = "crates/revm", version = "28.0.0", default-features = false }
45-
primitives = { path = "crates/primitives", package = "revm-primitives", version = "20.2.0", default-features = false }
46-
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "6.2.0", default-features = false }
47-
database = { path = "crates/database", package = "revm-database", version = "7.0.3", default-features = false }
48-
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "7.0.3", default-features = false }
49-
state = { path = "crates/state", package = "revm-state", version = "7.0.3", default-features = false }
50-
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "25.0.0", default-features = false }
51-
inspector = { path = "crates/inspector", package = "revm-inspector", version = "9.0.0", default-features = false }
52-
precompile = { path = "crates/precompile", package = "revm-precompile", version = "26.0.0", default-features = false }
53-
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "9.0.0", default-features = false }
54-
context = { path = "crates/context", package = "revm-context", version = "9.0.0", default-features = false }
55-
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "10.0.0", default-features = false }
56-
handler = { path = "crates/handler", package = "revm-handler", version = "9.0.0", default-features = false }
57-
op-revm = { path = "crates/op-revm", package = "op-revm", version = "9.0.0", default-features = false }
44+
revm = { path = "crates/revm", version = "28.0.1", default-features = false }
45+
primitives = { path = "crates/primitives", package = "revm-primitives", version = "20.2.1", default-features = false }
46+
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "6.2.1", default-features = false }
47+
database = { path = "crates/database", package = "revm-database", version = "7.0.4", default-features = false }
48+
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "7.0.4", default-features = false }
49+
state = { path = "crates/state", package = "revm-state", version = "7.0.4", default-features = false }
50+
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "25.0.1", default-features = false }
51+
inspector = { path = "crates/inspector", package = "revm-inspector", version = "9.1.0", default-features = false }
52+
precompile = { path = "crates/precompile", package = "revm-precompile", version = "26.0.1", default-features = false }
53+
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "9.0.1", default-features = false }
54+
context = { path = "crates/context", package = "revm-context", version = "9.0.1", default-features = false }
55+
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "10.0.1", default-features = false }
56+
handler = { path = "crates/handler", package = "revm-handler", version = "9.0.1", default-features = false }
57+
op-revm = { path = "crates/op-revm", package = "op-revm", version = "9.0.1", default-features = false }
5858
ee-tests = { path = "crates/ee-tests", package = "revm-ee-tests", version = "0.1.0", default-features = false }
5959

6060
# alloy

bins/revme/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [7.2.1](https://github.com/bluealloy/revm/compare/revme-v7.2.0...revme-v7.2.1) - 2025-08-12
11+
12+
### Other
13+
14+
- codspeed sstore sload opcodes ([#2881](https://github.com/bluealloy/revm/pull/2881))
15+
1016
## [7.2.0](https://github.com/bluealloy/revm/compare/revme-v7.1.0...revme-v7.2.0) - 2025-08-06
1117

1218
### Added

bins/revme/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "revme"
33
description = "Rust Ethereum Virtual Machine Executable"
4-
version = "7.2.0"
4+
version = "7.2.1"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/bytecode/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [6.2.1](https://github.com/bluealloy/revm/compare/revm-bytecode-v6.2.0...revm-bytecode-v6.2.1) - 2025-08-12
11+
12+
### Other
13+
14+
- Revert "feat: removed padding in case last opcode is terminal ([#2816](https://github.com/bluealloy/revm/pull/2816))" ([#2883](https://github.com/bluealloy/revm/pull/2883))
15+
- *(bytecode)* remove unused Debug import ([#2879](https://github.com/bluealloy/revm/pull/2879))
16+
- update outdated opcode memory reference link ([#2859](https://github.com/bluealloy/revm/pull/2859))
17+
1018
## [6.2.0](https://github.com/bluealloy/revm/compare/revm-bytecode-v6.1.0...revm-bytecode-v6.2.0) - 2025-08-06
1119

1220
### Added

crates/bytecode/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "revm-bytecode"
33
description = "EVM Bytecodes"
4-
version = "6.2.0"
4+
version = "6.2.1"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/context/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [9.0.1](https://github.com/bluealloy/revm/compare/revm-context-v9.0.0...revm-context-v9.0.1) - 2025-08-12
11+
12+
### Other
13+
14+
- updated the following local packages: revm-primitives, revm-bytecode, revm-state, revm-context-interface, revm-database, revm-database-interface
15+
1016
## [9.0.0](https://github.com/bluealloy/revm/compare/revm-context-v8.0.4...revm-context-v9.0.0) - 2025-08-06
1117

1218
### Added

crates/context/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "revm-context"
33
description = "Revm context crates"
4-
version = "9.0.0"
4+
version = "9.0.1"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/context/interface/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [10.0.1](https://github.com/bluealloy/revm/compare/revm-context-interface-v10.0.0...revm-context-interface-v10.0.1) - 2025-08-12
11+
12+
### Other
13+
14+
- Aggregate changes from PRs #2866, #2867, and #2874 ([#2876](https://github.com/bluealloy/revm/pull/2876))
15+
- make ci happy ([#2863](https://github.com/bluealloy/revm/pull/2863))
16+
1017
## [10.0.0](https://github.com/bluealloy/revm/compare/revm-context-interface-v9.0.0...revm-context-interface-v10.0.0) - 2025-08-06
1118

1219
### Added

crates/context/interface/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "revm-context-interface"
33
description = "Revm context interface crates"
4-
version = "10.0.0"
4+
version = "10.0.1"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

0 commit comments

Comments
 (0)