Skip to content

Commit 2c9129e

Browse files
chore: release
1 parent eb1d49f commit 2c9129e

File tree

22 files changed

+119
-29
lines changed

22 files changed

+119
-29
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 9 additions & 9 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 = "31.0.2", default-features = false }
44+
revm = { path = "crates/revm", version = "31.0.3", default-features = false }
4545
primitives = { path = "crates/primitives", package = "revm-primitives", version = "21.0.2", default-features = false }
4646
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "7.1.1", default-features = false }
4747
database = { path = "crates/database", package = "revm-database", version = "9.0.5", default-features = false }
4848
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "8.0.5", default-features = false }
4949
state = { path = "crates/state", package = "revm-state", version = "8.1.1", default-features = false }
50-
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "29.0.1", default-features = false }
51-
inspector = { path = "crates/inspector", package = "revm-inspector", version = "12.0.2", default-features = false }
52-
precompile = { path = "crates/precompile", package = "revm-precompile", version = "29.0.1", default-features = false }
53-
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "11.0.2", default-features = false }
54-
context = { path = "crates/context", package = "revm-context", version = "11.0.2", default-features = false }
55-
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "12.0.1", default-features = false }
56-
handler = { path = "crates/handler", package = "revm-handler", version = "12.0.2", default-features = false }
57-
op-revm = { path = "crates/op-revm", package = "op-revm", version = "12.0.2", default-features = false }
50+
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "29.1.0", default-features = false }
51+
inspector = { path = "crates/inspector", package = "revm-inspector", version = "12.1.0", default-features = false }
52+
precompile = { path = "crates/precompile", package = "revm-precompile", version = "29.1.0", default-features = false }
53+
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "11.0.3", default-features = false }
54+
context = { path = "crates/context", package = "revm-context", version = "11.1.0", default-features = false }
55+
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "12.1.0", default-features = false }
56+
handler = { path = "crates/handler", package = "revm-handler", version = "12.1.0", default-features = false }
57+
op-revm = { path = "crates/op-revm", package = "op-revm", version = "12.1.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: 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.3](https://github.com/bluealloy/revm/compare/revme-v9.0.2...revme-v9.0.3) - 2025-11-10
11+
12+
### Other
13+
14+
- updated the following local packages: revm, revm-statetest-types
15+
1016
## [9.0.2](https://github.com/bluealloy/revm/compare/revme-v9.0.1...revme-v9.0.2) - 2025-11-10
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 = "9.0.2"
4+
version = "9.0.3"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/context/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+
## [11.1.0](https://github.com/bluealloy/revm/compare/revm-context-v11.0.2...revm-context-v11.1.0) - 2025-11-10
11+
12+
### Added
13+
14+
- process precompile logs to inspector ([#3148](https://github.com/bluealloy/revm/pull/3148))
15+
- selfdestruct oog on cold load ([#3140](https://github.com/bluealloy/revm/pull/3140))
16+
17+
### Fixed
18+
19+
- use access list to decide if slot is cold ([#3149](https://github.com/bluealloy/revm/pull/3149))
20+
21+
### Other
22+
23+
- merge v98 versions bumps ([#3155](https://github.com/bluealloy/revm/pull/3155))
24+
1025
## [11.0.2](https://github.com/bluealloy/revm/compare/revm-context-v11.0.1...revm-context-v11.0.2) - 2025-11-10
1126

1227
### Other

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 = "11.0.2"
4+
version = "11.1.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+
## [12.1.0](https://github.com/bluealloy/revm/compare/revm-context-interface-v12.0.1...revm-context-interface-v12.1.0) - 2025-11-10
11+
12+
### Added
13+
14+
- process precompile logs to inspector ([#3148](https://github.com/bluealloy/revm/pull/3148))
15+
- selfdestruct oog on cold load ([#3140](https://github.com/bluealloy/revm/pull/3140))
16+
17+
### Other
18+
19+
- merge v98 versions bumps ([#3155](https://github.com/bluealloy/revm/pull/3155))
20+
1021
## [12.0.1](https://github.com/bluealloy/revm/compare/revm-context-interface-v12.0.0...revm-context-interface-v12.0.1) - 2025-11-07
1122

1223
### Other

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

crates/handler/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+
## [12.1.0](https://github.com/bluealloy/revm/compare/revm-handler-v12.0.2...revm-handler-v12.1.0) - 2025-11-10
11+
12+
### Added
13+
14+
- process precompile logs to inspector ([#3148](https://github.com/bluealloy/revm/pull/3148))
15+
- add gas refund to PrecompileOutput ([#3152](https://github.com/bluealloy/revm/pull/3152))
16+
17+
### Other
18+
19+
- merge v98 versions bumps ([#3155](https://github.com/bluealloy/revm/pull/3155))
20+
1021
## [12.0.2](https://github.com/bluealloy/revm/compare/revm-handler-v12.0.1...revm-handler-v12.0.2) - 2025-11-10
1122

1223
### Other

crates/handler/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-handler"
33
description = "Revm handler crates"
4-
version = "12.0.2"
4+
version = "12.1.0"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

0 commit comments

Comments
 (0)