Skip to content

Commit 09a5229

Browse files
chore: release
1 parent a094a93 commit 09a5229

30 files changed

Lines changed: 165 additions & 41 deletions

Cargo.lock

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

Cargo.toml

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

4242
[workspace.dependencies]
4343
# revm
44-
revm = { path = "crates/revm", version = "41.0.0", default-features = false }
45-
primitives = { path = "crates/primitives", package = "revm-primitives", version = "41.0.0", default-features = false }
46-
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "41.0.0", default-features = false }
47-
database = { path = "crates/database", package = "revm-database", version = "41.0.0", default-features = false }
48-
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "41.0.0", default-features = false }
49-
state = { path = "crates/state", package = "revm-state", version = "41.0.0", default-features = false }
50-
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "41.0.0", default-features = false }
51-
inspector = { path = "crates/inspector", package = "revm-inspector", version = "41.0.0", default-features = false }
52-
precompile = { path = "crates/precompile", package = "revm-precompile", version = "41.0.0", default-features = false }
53-
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "41.0.0", default-features = false }
54-
context = { path = "crates/context", package = "revm-context", version = "41.0.0", default-features = false }
55-
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "41.0.0", default-features = false }
56-
handler = { path = "crates/handler", package = "revm-handler", version = "41.0.0", default-features = false }
44+
revm = { path = "crates/revm", version = "42.0.0", default-features = false }
45+
primitives = { path = "crates/primitives", package = "revm-primitives", version = "41.1.0", default-features = false }
46+
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "41.0.1", default-features = false }
47+
database = { path = "crates/database", package = "revm-database", version = "41.1.0", default-features = false }
48+
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "42.0.0", default-features = false }
49+
state = { path = "crates/state", package = "revm-state", version = "41.1.0", default-features = false }
50+
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "42.0.0", default-features = false }
51+
inspector = { path = "crates/inspector", package = "revm-inspector", version = "41.0.1", default-features = false }
52+
precompile = { path = "crates/precompile", package = "revm-precompile", version = "42.0.0", default-features = false }
53+
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "41.1.0", default-features = false }
54+
context = { path = "crates/context", package = "revm-context", version = "42.0.0", default-features = false }
55+
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "42.0.0", default-features = false }
56+
handler = { path = "crates/handler", package = "revm-handler", version = "42.0.0", default-features = false }
5757
ee-tests = { path = "crates/ee-tests", package = "revm-ee-tests", version = "41.0.0", default-features = false }
5858

5959
# 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+
## [41.1.0](https://github.com/bluealloy/revm/compare/revme-v41.0.0...revme-v41.1.0) - 2026-07-13
11+
12+
### Added
13+
14+
- *(amsterdam)* glam devnet-6 gas accounting & EIP alignment ([#3782](https://github.com/bluealloy/revm/pull/3782))
15+
1016
## [41.0.0](https://github.com/bluealloy/revm/compare/revme-v17.0.3...revme-v41.0.0) - 2026-06-11
1117

1218
### Other

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

crates/bytecode/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [41.0.1](https://github.com/bluealloy/revm/compare/revm-bytecode-v41.0.0...revm-bytecode-v41.0.1) - 2026-07-13
11+
12+
### Fixed
13+
14+
- *(bytecode)* avoid iterating legacy padding opcodes ([#3792](https://github.com/bluealloy/revm/pull/3792))
15+
16+
### Other
17+
18+
- *(deps)* bump dependencies ([#3794](https://github.com/bluealloy/revm/pull/3794))
19+
- *(bytecode)* cover all truncated pushes ([#3783](https://github.com/bluealloy/revm/pull/3783))
20+
1021
## [41.0.0](https://github.com/bluealloy/revm/compare/revm-bytecode-v11.0.1...revm-bytecode-v41.0.0) - 2026-06-11
1122

1223
### Fixed

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 = "41.0.0"
4+
version = "41.0.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+
## [42.0.0](https://github.com/bluealloy/revm/compare/revm-context-v41.0.0...revm-context-v42.0.0) - 2026-07-13
11+
12+
### Added
13+
14+
- *(amsterdam)* glam devnet-6 gas accounting & EIP alignment ([#3782](https://github.com/bluealloy/revm/pull/3782))
15+
1016
## [41.0.0](https://github.com/bluealloy/revm/compare/revm-context-v18.0.3...revm-context-v41.0.0) - 2026-06-11
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 = "41.0.0"
4+
version = "42.0.0"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/context/interface/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [42.0.0](https://github.com/bluealloy/revm/compare/revm-context-interface-v41.0.0...revm-context-interface-v42.0.0) - 2026-07-13
11+
12+
### Added
13+
14+
- *(amsterdam)* glam devnet-6 gas accounting & EIP alignment ([#3782](https://github.com/bluealloy/revm/pull/3782))
15+
- make max refund quotient configurable ([#3757](https://github.com/bluealloy/revm/pull/3757))
16+
17+
### Other
18+
19+
- clarify EIP-7702 regular-gas GasId names ([#3725](https://github.com/bluealloy/revm/pull/3725))
20+
1021
## [41.0.0](https://github.com/bluealloy/revm/compare/revm-context-interface-v19.0.3...revm-context-interface-v41.0.0) - 2026-06-11
1122

1223
### 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 = "41.0.0"
4+
version = "42.0.0"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

0 commit comments

Comments
 (0)