Skip to content

Commit 1fb20ae

Browse files
chore: release
1 parent ac7d01f commit 1fb20ae

33 files changed

+349
-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 = "27.1.0", default-features = false }
45-
primitives = { path = "crates/primitives", package = "revm-primitives", version = "20.1.0", default-features = false }
46-
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "6.1.0", default-features = false }
47-
database = { path = "crates/database", package = "revm-database", version = "7.0.2", default-features = false }
48-
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "7.0.2", default-features = false }
49-
state = { path = "crates/state", package = "revm-state", version = "7.0.2", default-features = false }
50-
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "24.0.0", default-features = false }
51-
inspector = { path = "crates/inspector", package = "revm-inspector", version = "8.1.0", default-features = false }
52-
precompile = { path = "crates/precompile", package = "revm-precompile", version = "25.0.0", default-features = false }
53-
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "8.0.5", default-features = false }
54-
context = { path = "crates/context", package = "revm-context", version = "8.0.4", default-features = false }
55-
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "9.0.0", default-features = false }
56-
handler = { path = "crates/handler", package = "revm-handler", version = "8.1.0", default-features = false }
57-
op-revm = { path = "crates/op-revm", package = "op-revm", version = "8.1.0", default-features = false }
44+
revm = { path = "crates/revm", version = "27.2.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 = "8.2.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 = "8.0.6", 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 }
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: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,26 @@
11
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [7.2.0](https://github.com/bluealloy/revm/compare/revme-v7.1.0...revme-v7.2.0) - 2025-08-06
11+
12+
### Added
13+
14+
- Reuse bls12-381 codepaths to implement kzg point evaluation precompile ([#2809](https://github.com/bluealloy/revm/pull/2809))
15+
16+
### Other
17+
18+
- *(benches)* rename anaysis-inspector to snailtracer-inspect ([#2834](https://github.com/bluealloy/revm/pull/2834))
19+
- *(benches)* clean up criterion callsites ([#2833](https://github.com/bluealloy/revm/pull/2833))
20+
- add rust-version and note about MSRV ([#2789](https://github.com/bluealloy/revm/pull/2789))
21+
- fix clippy ([#2785](https://github.com/bluealloy/revm/pull/2785))
22+
- add gas_limit to revme evm ([#2779](https://github.com/bluealloy/revm/pull/2779))
23+
# Changelog
224
All notable changes to this project will be documented in this file.
325

426
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

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

crates/bytecode/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [6.2.0](https://github.com/bluealloy/revm/compare/revm-bytecode-v6.1.0...revm-bytecode-v6.2.0) - 2025-08-06
11+
12+
### Added
13+
14+
- removed padding in case last opcode is terminating or unknown ([#2816](https://github.com/bluealloy/revm/pull/2816))
15+
16+
### Other
17+
18+
- *(OpCode)* add is_valid ([#2847](https://github.com/bluealloy/revm/pull/2847))
19+
- update README.md ([#2842](https://github.com/bluealloy/revm/pull/2842))
20+
- *(benches)* clean up criterion callsites ([#2833](https://github.com/bluealloy/revm/pull/2833))
21+
- improve ExtBytecode hash handling ([#2826](https://github.com/bluealloy/revm/pull/2826))
22+
- add rust-version and note about MSRV ([#2789](https://github.com/bluealloy/revm/pull/2789))
23+
- add OnceLock re-export with no_std support ([#2787](https://github.com/bluealloy/revm/pull/2787))
24+
1025
## [6.1.0](https://github.com/bluealloy/revm/compare/revm-bytecode-v6.0.1...revm-bytecode-v6.1.0) - 2025-07-23
1126

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

crates/context/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [9.0.0](https://github.com/bluealloy/revm/compare/revm-context-v8.0.4...revm-context-v9.0.0) - 2025-08-06
11+
12+
### Added
13+
14+
- short address for journal cold/warm check ([#2849](https://github.com/bluealloy/revm/pull/2849))
15+
16+
### Other
17+
18+
- rm redundant lifetime constraints ([#2850](https://github.com/bluealloy/revm/pull/2850))
19+
- update README.md ([#2842](https://github.com/bluealloy/revm/pull/2842))
20+
- add rust-version and note about MSRV ([#2789](https://github.com/bluealloy/revm/pull/2789))
21+
1022
## [8.0.4](https://github.com/bluealloy/revm/compare/revm-context-v8.0.3...revm-context-v8.0.4) - 2025-07-23
1123

1224
### 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 = "8.0.4"
4+
version = "9.0.0"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/context/interface/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,22 @@ 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-interface-v9.0.0...revm-context-interface-v10.0.0) - 2025-08-06
11+
12+
### Added
13+
14+
- short address for journal cold/warm check ([#2849](https://github.com/bluealloy/revm/pull/2849))
15+
16+
### Fixed
17+
18+
- swapped comments for db and db_mut methods in JournalTr trait ([#2774](https://github.com/bluealloy/revm/pull/2774))
19+
20+
### Other
21+
22+
- rm redundant lifetime constraints ([#2850](https://github.com/bluealloy/revm/pull/2850))
23+
- update README.md ([#2842](https://github.com/bluealloy/revm/pull/2842))
24+
- add rust-version and note about MSRV ([#2789](https://github.com/bluealloy/revm/pull/2789))
25+
1026
## [9.0.0](https://github.com/bluealloy/revm/compare/revm-context-interface-v8.0.1...revm-context-interface-v9.0.0) - 2025-07-23
1127

1228
### Fixed

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

0 commit comments

Comments
 (0)