Skip to content

Commit bfe286f

Browse files
chore: release
1 parent 24f9256 commit bfe286f

32 files changed

+293
-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 = "29.0.0", 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.2", default-features = false }
47-
database = { path = "crates/database", package = "revm-database", version = "7.0.5", default-features = false }
48-
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "7.0.5", default-features = false }
49-
state = { path = "crates/state", package = "revm-state", version = "7.0.5", default-features = false }
50-
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "25.0.2", default-features = false }
51-
inspector = { path = "crates/inspector", package = "revm-inspector", version = "10.0.0", default-features = false }
52-
precompile = { path = "crates/precompile", package = "revm-precompile", version = "27.0.0", default-features = false }
53-
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "9.0.2", default-features = false }
54-
context = { path = "crates/context", package = "revm-context", version = "9.0.2", default-features = false }
55-
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "10.1.0", default-features = false }
56-
handler = { path = "crates/handler", package = "revm-handler", version = "10.0.0", default-features = false }
57-
op-revm = { path = "crates/op-revm", package = "op-revm", version = "10.0.0", default-features = false }
44+
revm = { path = "crates/revm", version = "30.0.0", default-features = false }
45+
primitives = { path = "crates/primitives", package = "revm-primitives", version = "21.0.0", default-features = false }
46+
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "6.2.3", default-features = false }
47+
database = { path = "crates/database", package = "revm-database", version = "7.0.6", default-features = false }
48+
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "7.0.6", default-features = false }
49+
state = { path = "crates/state", package = "revm-state", version = "7.0.6", default-features = false }
50+
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "26.0.0", default-features = false }
51+
inspector = { path = "crates/inspector", package = "revm-inspector", version = "10.1.0", default-features = false }
52+
precompile = { path = "crates/precompile", package = "revm-precompile", version = "28.0.0", default-features = false }
53+
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "10.0.0", default-features = false }
54+
context = { path = "crates/context", package = "revm-context", version = "10.0.0", default-features = false }
55+
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "11.0.0", default-features = false }
56+
handler = { path = "crates/handler", package = "revm-handler", version = "11.0.0", default-features = false }
57+
op-revm = { path = "crates/op-revm", package = "op-revm", version = "11.0.0", 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: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4040

4141
## [Unreleased]
4242

43+
## [8.0.0](https://github.com/bluealloy/revm/compare/revme-v7.2.2...revme-v8.0.0) - 2025-09-17
44+
45+
### Added
46+
47+
- *(revme)* ef blockchain tests cli ([#2935](https://github.com/bluealloy/revm/pull/2935))
48+
49+
### Fixed
50+
51+
- support 0x prefix in evmrunner hex input ([#2970](https://github.com/bluealloy/revm/pull/2970))
52+
- *(revme)* Avoid panic on non-UTF filenames in statetest runner ([#2948](https://github.com/bluealloy/revm/pull/2948))
53+
54+
### Other
55+
56+
- pretty print state in revme statetest ([#2979](https://github.com/bluealloy/revm/pull/2979))
57+
- Fix CLI exit code for invalid bytecode input ([#2968](https://github.com/bluealloy/revm/pull/2968))
58+
4359
## [7.1.0](https://github.com/bluealloy/revm/compare/revme-v7.0.4...revme-v7.1.0) - 2025-07-23
4460

4561
### 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.2"
4+
version = "8.0.0"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/bytecode/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [6.2.3](https://github.com/bluealloy/revm/compare/revm-bytecode-v6.2.2...revm-bytecode-v6.2.3) - 2025-09-17
11+
12+
### Fixed
13+
14+
- Apply spelling corrections from PRs #2926, #2915, #2908 ([#2978](https://github.com/bluealloy/revm/pull/2978))
15+
16+
### Other
17+
18+
- add SECURITY.md ([#2956](https://github.com/bluealloy/revm/pull/2956))
19+
1020
## [6.2.2](https://github.com/bluealloy/revm/compare/revm-bytecode-v6.2.1...revm-bytecode-v6.2.2) - 2025-08-23
1121

1222
### Other

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.2"
4+
version = "6.2.3"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/context/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [10.0.0](https://github.com/bluealloy/revm/compare/revm-context-v9.0.2...revm-context-v10.0.0) - 2025-09-17
11+
12+
### Added
13+
14+
- send bytecode with call input ([#2963](https://github.com/bluealloy/revm/pull/2963))
15+
- *(op-revm)* Add an option to disable "fee-charge" on `op-revm` ([#2980](https://github.com/bluealloy/revm/pull/2980))
16+
- *(revme)* ef blockchain tests cli ([#2935](https://github.com/bluealloy/revm/pull/2935))
17+
18+
### Fixed
19+
20+
- Apply spelling corrections from PRs #2926, #2915, #2908 ([#2978](https://github.com/bluealloy/revm/pull/2978))
21+
- FrameStack mark push/end_init as unsafe ([#2929](https://github.com/bluealloy/revm/pull/2929))
22+
- skip cold load on oog ([#2903](https://github.com/bluealloy/revm/pull/2903))
23+
24+
### Other
25+
26+
- prealloc few frames ([#2965](https://github.com/bluealloy/revm/pull/2965))
27+
- add SECURITY.md ([#2956](https://github.com/bluealloy/revm/pull/2956))
28+
- *(cleanup)* Remove EIP-7918 related functions and EIP file ([#2925](https://github.com/bluealloy/revm/pull/2925))
29+
- cargo update ([#2930](https://github.com/bluealloy/revm/pull/2930))
30+
1031
## [9.0.2](https://github.com/bluealloy/revm/compare/revm-context-v9.0.1...revm-context-v9.0.2) - 2025-08-23
1132

1233
### Fixed

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.2"
4+
version = "10.0.0"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/context/interface/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [11.0.0](https://github.com/bluealloy/revm/compare/revm-context-interface-v10.1.0...revm-context-interface-v11.0.0) - 2025-09-17
11+
12+
### Added
13+
14+
- send bytecode with call input ([#2963](https://github.com/bluealloy/revm/pull/2963))
15+
- *(op-revm)* Add an option to disable "fee-charge" on `op-revm` ([#2980](https://github.com/bluealloy/revm/pull/2980))
16+
- *(revme)* ef blockchain tests cli ([#2935](https://github.com/bluealloy/revm/pull/2935))
17+
18+
### Fixed
19+
20+
- Apply spelling corrections from PRs #2926, #2915, #2908 ([#2978](https://github.com/bluealloy/revm/pull/2978))
21+
- FrameStack mark push/end_init as unsafe ([#2929](https://github.com/bluealloy/revm/pull/2929))
22+
- skip cold load on oog ([#2903](https://github.com/bluealloy/revm/pull/2903))
23+
24+
### Other
25+
26+
- prealloc few frames ([#2965](https://github.com/bluealloy/revm/pull/2965))
27+
- add SECURITY.md ([#2956](https://github.com/bluealloy/revm/pull/2956))
28+
- *(cleanup)* Remove EIP-7918 related functions and EIP file ([#2925](https://github.com/bluealloy/revm/pull/2925))
29+
- cargo update ([#2930](https://github.com/bluealloy/revm/pull/2930))
30+
1031
## [10.1.0](https://github.com/bluealloy/revm/compare/revm-context-interface-v10.0.1...revm-context-interface-v10.1.0) - 2025-08-23
1132

1233
### 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.1.0"
4+
version = "11.0.0"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

0 commit comments

Comments
 (0)