Skip to content

Commit 933cd2c

Browse files
chore: release
1 parent acdb49f commit 933cd2c

20 files changed

Lines changed: 80 additions & 26 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 8 additions & 8 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 = "33.0.0", default-features = false }
44+
revm = { path = "crates/revm", version = "33.0.1", 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 = "31.0.0", default-features = false }
51-
inspector = { path = "crates/inspector", package = "revm-inspector", version = "14.0.0", default-features = false }
50+
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "31.0.1", default-features = false }
51+
inspector = { path = "crates/inspector", package = "revm-inspector", version = "14.0.1", default-features = false }
5252
precompile = { path = "crates/precompile", package = "revm-precompile", version = "31.0.0", default-features = false }
53-
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "13.0.0", default-features = false }
54-
context = { path = "crates/context", package = "revm-context", version = "12.0.0", default-features = false }
55-
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "13.0.0", default-features = false }
56-
handler = { path = "crates/handler", package = "revm-handler", version = "14.0.0", default-features = false }
57-
op-revm = { path = "crates/op-revm", package = "op-revm", version = "14.0.0", default-features = false }
53+
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "13.0.1", default-features = false }
54+
context = { path = "crates/context", package = "revm-context", version = "12.0.1", default-features = false }
55+
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "13.1.0", default-features = false }
56+
handler = { path = "crates/handler", package = "revm-handler", version = "14.0.1", default-features = false }
57+
op-revm = { path = "crates/op-revm", package = "op-revm", version = "14.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+
## [10.0.1](https://github.com/0xkr8os/revm/compare/revme-v10.0.0...revme-v10.0.1) - 2025-11-12
11+
12+
### Other
13+
14+
- updated the following local packages: revm, revm-statetest-types
15+
1016
## [10.0.0](https://github.com/bluealloy/revm/compare/revme-v9.0.2...revme-v10.0.0) - 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 = "10.0.0"
4+
version = "10.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+
## [12.0.1](https://github.com/0xkr8os/revm/compare/revm-context-v12.0.0...revm-context-v12.0.1) - 2025-11-12
11+
12+
### Other
13+
14+
- updated the following local packages: revm-context-interface
15+
1016
## [12.0.0](https://github.com/bluealloy/revm/compare/revm-context-v11.0.2...revm-context-v12.0.0) - 2025-11-10
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 = "12.0.0"
4+
version = "12.0.1"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/context/interface/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+
## [13.1.0](https://github.com/0xkr8os/revm/compare/revm-context-interface-v13.0.0...revm-context-interface-v13.1.0) - 2025-11-12
11+
12+
### Added
13+
14+
- *(context)* add mark_cold method to JournaledAccount ([#3160](https://github.com/0xkr8os/revm/pull/3160))
15+
1016
## [13.0.0](https://github.com/bluealloy/revm/compare/revm-context-interface-v12.0.1...revm-context-interface-v13.0.0) - 2025-11-10
1117

1218
### 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 = "13.0.0"
4+
version = "13.1.0"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/handler/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+
## [14.0.1](https://github.com/0xkr8os/revm/compare/revm-handler-v14.0.0...revm-handler-v14.0.1) - 2025-11-12
11+
12+
### Other
13+
14+
- updated the following local packages: revm-context-interface, revm-context, revm-interpreter
15+
1016
## [14.0.0](https://github.com/bluealloy/revm/compare/revm-handler-v12.0.2...revm-handler-v14.0.0) - 2025-11-10
1117

1218
### Added

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

0 commit comments

Comments
 (0)