Skip to content

Commit 05ce71f

Browse files
chore: release
1 parent 628327c commit 05ce71f

20 files changed

+93
-25
lines changed

Cargo.lock

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,19 @@ default-members = ["crates/revm"]
3838

3939
[workspace.dependencies]
4040
# revm
41-
revm = { path = "crates/revm", version = "20.0.0-alpha.4", default-features = false }
41+
revm = { path = "crates/revm", version = "20.0.0-alpha.5", default-features = false }
4242
primitives = { path = "crates/primitives", package = "revm-primitives", version = "16.0.0-alpha.3", default-features = false }
4343
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "1.0.0-alpha.3", default-features = false }
4444
database = { path = "crates/database", package = "revm-database", version = "1.0.0-alpha.3", default-features = false }
4545
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "1.0.0-alpha.3", default-features = false }
4646
state = { path = "crates/state", package = "revm-state", version = "1.0.0-alpha.3", default-features = false }
47-
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "16.0.0-alpha.4", default-features = false }
48-
inspector = { path = "crates/inspector", package = "revm-inspector", version = "1.0.0-alpha.4", default-features = false }
49-
precompile = { path = "crates/precompile", package = "revm-precompile", version = "17.0.0-alpha.4", default-features = false }
47+
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "16.0.0-alpha.5", default-features = false }
48+
inspector = { path = "crates/inspector", package = "revm-inspector", version = "1.0.0-alpha.5", default-features = false }
49+
precompile = { path = "crates/precompile", package = "revm-precompile", version = "17.0.0-alpha.5", default-features = false }
5050
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "1.0.0-alpha.4", default-features = false }
51-
context = { path = "crates/context", package = "revm-context", version = "1.0.0-alpha.3", default-features = false }
52-
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "1.0.0-alpha.3", default-features = false }
53-
handler = { path = "crates/handler", package = "revm-handler", version = "1.0.0-alpha.4", default-features = false }
51+
context = { path = "crates/context", package = "revm-context", version = "1.0.0-alpha.4", default-features = false }
52+
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "1.0.0-alpha.4", default-features = false }
53+
handler = { path = "crates/handler", package = "revm-handler", version = "1.0.0-alpha.5", default-features = false }
5454

5555
# alloy
5656
alloy-eip2930 = { version = "0.1.0", default-features = false }

bins/revme/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [3.0.0-alpha.5](https://github.com/bluealloy/revm/compare/revme-v3.0.0-alpha.4...revme-v3.0.0-alpha.5) - 2025-03-12
10+
11+
### Added
12+
13+
- rename inspect_previous to inspect_replay ([#2194](https://github.com/bluealloy/revm/pull/2194))
14+
915
## [3.0.0-alpha.4](https://github.com/bluealloy/revm/compare/revme-v3.0.0-alpha.3...revme-v3.0.0-alpha.4) - 2025-03-11
1016

1117
### Other

bins/revme/Cargo.toml

+1-1
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 = "3.0.0-alpha.4"
4+
version = "3.0.0-alpha.5"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/context/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.0.0-alpha.4](https://github.com/bluealloy/revm/compare/revm-context-v1.0.0-alpha.3...revm-context-v1.0.0-alpha.4) - 2025-03-12
11+
12+
### Added
13+
14+
- add custom error to context ([#2197](https://github.com/bluealloy/revm/pull/2197))
15+
- Add tx/block to EvmExecution trait ([#2195](https://github.com/bluealloy/revm/pull/2195))
16+
1017
## [1.0.0-alpha.3](https://github.com/bluealloy/revm/compare/revm-context-v1.0.0-alpha.2...revm-context-v1.0.0-alpha.3) - 2025-03-11
1118

1219
### Fixed

crates/context/Cargo.toml

+1-1
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 = "1.0.0-alpha.3"
4+
version = "1.0.0-alpha.4"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/context/interface/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.0.0-alpha.4](https://github.com/bluealloy/revm/compare/revm-context-interface-v1.0.0-alpha.3...revm-context-interface-v1.0.0-alpha.4) - 2025-03-12
11+
12+
### Added
13+
14+
- add custom error to context ([#2197](https://github.com/bluealloy/revm/pull/2197))
15+
- Add tx/block to EvmExecution trait ([#2195](https://github.com/bluealloy/revm/pull/2195))
16+
1017
## [1.0.0-alpha.3](https://github.com/bluealloy/revm/compare/revm-context-interface-v1.0.0-alpha.2...revm-context-interface-v1.0.0-alpha.3) - 2025-03-11
1118

1219
### Fixed

crates/context/interface/Cargo.toml

+1-1
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 = "1.0.0-alpha.3"
4+
version = "1.0.0-alpha.4"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/handler/CHANGELOG.md

+11
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+
## [1.0.0-alpha.5](https://github.com/bluealloy/revm/compare/revm-handler-v1.0.0-alpha.4...revm-handler-v1.0.0-alpha.5) - 2025-03-12
11+
12+
### Added
13+
14+
- add custom error to context ([#2197](https://github.com/bluealloy/revm/pull/2197))
15+
- Add tx/block to EvmExecution trait ([#2195](https://github.com/bluealloy/revm/pull/2195))
16+
17+
### Other
18+
19+
- add debug to precompiles type ([#2193](https://github.com/bluealloy/revm/pull/2193))
20+
1021
## [1.0.0-alpha.4](https://github.com/bluealloy/revm/compare/revm-handler-v1.0.0-alpha.3...revm-handler-v1.0.0-alpha.4) - 2025-03-11
1122

1223
### Added

crates/handler/Cargo.toml

+1-1
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 = "1.0.0-alpha.4"
4+
version = "1.0.0-alpha.5"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/inspector/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.0.0-alpha.5](https://github.com/bluealloy/revm/compare/revm-inspector-v1.0.0-alpha.4...revm-inspector-v1.0.0-alpha.5) - 2025-03-12
11+
12+
### Added
13+
14+
- add custom error to context ([#2197](https://github.com/bluealloy/revm/pull/2197))
15+
- Add tx/block to EvmExecution trait ([#2195](https://github.com/bluealloy/revm/pull/2195))
16+
- rename inspect_previous to inspect_replay ([#2194](https://github.com/bluealloy/revm/pull/2194))
17+
1018
## [1.0.0-alpha.4](https://github.com/bluealloy/revm/compare/revm-inspector-v1.0.0-alpha.3...revm-inspector-v1.0.0-alpha.4) - 2025-03-11
1119

1220
### Added

crates/inspector/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "revm-inspector"
33
description = "Revm inspector interface"
4-
version = "1.0.0-alpha.4"
4+
version = "1.0.0-alpha.5"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/interpreter/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [16.0.0-alpha.5](https://github.com/bluealloy/revm/compare/revm-interpreter-v16.0.0-alpha.4...revm-interpreter-v16.0.0-alpha.5) - 2025-03-12
10+
11+
### Added
12+
13+
- add custom error to context ([#2197](https://github.com/bluealloy/revm/pull/2197))
14+
915
## [16.0.0-alpha.4](https://github.com/bluealloy/revm/compare/revm-interpreter-v16.0.0-alpha.3...revm-interpreter-v16.0.0-alpha.4) - 2025-03-11
1016

1117
### Fixed

crates/interpreter/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "revm-interpreter"
33
description = "Revm Interpreter that executes bytecode."
4-
version = "16.0.0-alpha.4"
4+
version = "16.0.0-alpha.5"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/optimism/CHANGELOG.md

+11
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+
## [1.0.0-alpha.4](https://github.com/bluealloy/revm/compare/op-revm-v1.0.0-alpha.3...op-revm-v1.0.0-alpha.4) - 2025-03-12
11+
12+
### Added
13+
14+
- Add tx/block to EvmExecution trait ([#2195](https://github.com/bluealloy/revm/pull/2195))
15+
- rename inspect_previous to inspect_replay ([#2194](https://github.com/bluealloy/revm/pull/2194))
16+
17+
### Other
18+
19+
- add debug to precompiles type ([#2193](https://github.com/bluealloy/revm/pull/2193))
20+
1021
## [1.0.0-alpha.3](https://github.com/bluealloy/revm/compare/op-revm-v1.0.0-alpha.2...op-revm-v1.0.0-alpha.3) - 2025-03-11
1122

1223
### Fixed

crates/optimism/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "op-revm"
33
description = "Optimism variant of Revm"
4-
version = "1.0.0-alpha.3"
4+
version = "1.0.0-alpha.4"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/precompile/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [17.0.0-alpha.5](https://github.com/bluealloy/revm/compare/revm-precompile-v17.0.0-alpha.4...revm-precompile-v17.0.0-alpha.5) - 2025-03-12
10+
11+
### Other
12+
13+
- updated the following local packages: revm-context-interface
14+
915
## [17.0.0-alpha.4](https://github.com/bluealloy/revm/compare/revm-precompile-v17.0.0-alpha.3...revm-precompile-v17.0.0-alpha.4) - 2025-03-11
1016

1117
### Fixed

crates/precompile/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "revm-precompile"
33
description = "Revm Precompiles - Ethereum compatible precompiled contracts"
4-
version = "17.0.0-alpha.4"
4+
version = "17.0.0-alpha.5"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/revm/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5757

5858
## [Unreleased]
5959

60+
## [20.0.0-alpha.5](https://github.com/bluealloy/revm/compare/revm-v20.0.0-alpha.4...revm-v20.0.0-alpha.5) - 2025-03-12
61+
62+
### Other
63+
64+
- updated the following local packages: revm-context-interface, revm-context, revm-interpreter, revm-handler, revm-inspector
65+
6066
## [20.0.0-alpha.4](https://github.com/bluealloy/revm/compare/revm-v20.0.0-alpha.3...revm-v20.0.0-alpha.4) - 2025-03-11
6167

6268
### Fixed

crates/revm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "revm"
33
description = "Revm - Rust Ethereum Virtual Machine"
4-
version = "20.0.0-alpha.4"
4+
version = "20.0.0-alpha.5"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

0 commit comments

Comments
 (0)