Skip to content

Commit 9dca565

Browse files
chore: release
1 parent a21d64e commit 9dca565

32 files changed

+159
-43
lines changed

Cargo.lock

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

Cargo.toml

+13-13
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.3", default-features = false }
42-
primitives = { path = "crates/primitives", package = "revm-primitives", version = "16.0.0-alpha.2", default-features = false }
43-
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "1.0.0-alpha.2", default-features = false }
44-
database = { path = "crates/database", package = "revm-database", version = "1.0.0-alpha.2", default-features = false }
45-
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "1.0.0-alpha.2", default-features = false }
46-
state = { path = "crates/state", package = "revm-state", version = "1.0.0-alpha.2", default-features = false }
47-
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "16.0.0-alpha.3", default-features = false }
48-
inspector = { path = "crates/inspector", package = "revm-inspector", version = "1.0.0-alpha.3", default-features = false }
49-
precompile = { path = "crates/precompile", package = "revm-precompile", version = "17.0.0-alpha.3", default-features = false }
50-
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "1.0.0-alpha.3", default-features = false }
51-
context = { path = "crates/context", package = "revm-context", version = "1.0.0-alpha.2", default-features = false }
52-
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "1.0.0-alpha.2", default-features = false }
53-
handler = { path = "crates/handler", package = "revm-handler", version = "1.0.0-alpha.3", default-features = false }
41+
revm = { path = "crates/revm", version = "20.0.0-alpha.4", default-features = false }
42+
primitives = { path = "crates/primitives", package = "revm-primitives", version = "16.0.0-alpha.3", default-features = false }
43+
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "1.0.0-alpha.3", default-features = false }
44+
database = { path = "crates/database", package = "revm-database", version = "1.0.0-alpha.3", default-features = false }
45+
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "1.0.0-alpha.3", default-features = false }
46+
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 }
50+
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 }
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.4](https://github.com/bluealloy/revm/compare/revme-v3.0.0-alpha.3...revme-v3.0.0-alpha.4) - 2025-03-11
10+
11+
### Other
12+
13+
- updated the following local packages: revm-primitives, revm-bytecode, revm-state, revm-database-interface, revm-context-interface, revm-context, revm-database, revm-handler, revm-inspector, revm
14+
915
## [3.0.0-alpha.3](https://github.com/bluealloy/revm/compare/revme-v3.0.0-alpha.2...revme-v3.0.0-alpha.3) - 2025-03-10
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.3"
4+
version = "3.0.0-alpha.4"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/bytecode/CHANGELOG.md

+6
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+
## [1.0.0-alpha.3](https://github.com/bluealloy/revm/compare/revm-bytecode-v1.0.0-alpha.2...revm-bytecode-v1.0.0-alpha.3) - 2025-03-11
11+
12+
### Fixed
13+
14+
- correct propagate features ([#2177](https://github.com/bluealloy/revm/pull/2177))
15+
1016
## [1.0.0-alpha.2](https://github.com/bluealloy/revm/compare/revm-bytecode-v1.0.0-alpha.1...revm-bytecode-v1.0.0-alpha.2) - 2025-03-10
1117

1218
### Added

crates/bytecode/Cargo.toml

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

crates/context/CHANGELOG.md

+6
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+
## [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
11+
12+
### Fixed
13+
14+
- correct propagate features ([#2177](https://github.com/bluealloy/revm/pull/2177))
15+
1016
## [1.0.0-alpha.2](https://github.com/bluealloy/revm/compare/revm-context-v1.0.0-alpha.1...revm-context-v1.0.0-alpha.2) - 2025-03-10
1117

1218
### Added

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

crates/context/interface/CHANGELOG.md

+6
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+
## [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
11+
12+
### Fixed
13+
14+
- correct propagate features ([#2177](https://github.com/bluealloy/revm/pull/2177))
15+
1016
## [1.0.0-alpha.2](https://github.com/bluealloy/revm/compare/revm-context-interface-v1.0.0-alpha.1...revm-context-interface-v1.0.0-alpha.2) - 2025-03-10
1117

1218
### Added

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

crates/database/CHANGELOG.md

+6
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+
## [1.0.0-alpha.3](https://github.com/bluealloy/revm/compare/revm-database-v1.0.0-alpha.2...revm-database-v1.0.0-alpha.3) - 2025-03-11
11+
12+
### Fixed
13+
14+
- correct propagate features ([#2177](https://github.com/bluealloy/revm/pull/2177))
15+
1016
## [1.0.0-alpha.2](https://github.com/bluealloy/revm/compare/revm-database-v1.0.0-alpha.1...revm-database-v1.0.0-alpha.2) - 2025-03-10
1117

1218
### Fixed

crates/database/Cargo.toml

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

crates/database/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.3](https://github.com/bluealloy/revm/compare/revm-database-interface-v1.0.0-alpha.2...revm-database-interface-v1.0.0-alpha.3) - 2025-03-11
11+
12+
### Fixed
13+
14+
- remove wrong Clone Macro in WrapDatabaseRef ([#2181](https://github.com/bluealloy/revm/pull/2181))
15+
- correct propagate features ([#2177](https://github.com/bluealloy/revm/pull/2177))
16+
1017
## [1.0.0-alpha.2](https://github.com/bluealloy/revm/compare/revm-database-interface-v1.0.0-alpha.1...revm-database-interface-v1.0.0-alpha.2) - 2025-03-10
1118

1219
### Added

crates/database/interface/Cargo.toml

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

crates/handler/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ 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-handler-v1.0.0-alpha.3...revm-handler-v1.0.0-alpha.4) - 2025-03-11
11+
12+
### Added
13+
14+
- decouple first_frame_input from inspector ([#2180](https://github.com/bluealloy/revm/pull/2180))
15+
16+
### Fixed
17+
18+
- correct propagate features ([#2177](https://github.com/bluealloy/revm/pull/2177))
19+
20+
### Other
21+
22+
- remove CTX phantomdata from precompile providers ([#2178](https://github.com/bluealloy/revm/pull/2178))
23+
1024
## [1.0.0-alpha.3](https://github.com/bluealloy/revm/compare/revm-handler-v1.0.0-alpha.2...revm-handler-v1.0.0-alpha.3) - 2025-03-10
1125

1226
### Other

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

crates/inspector/CHANGELOG.md

+15
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+
## [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
11+
12+
### Added
13+
14+
- decouple first_frame_input from inspector ([#2180](https://github.com/bluealloy/revm/pull/2180))
15+
16+
### Fixed
17+
18+
- remove wrong Clone Macro in WrapDatabaseRef ([#2181](https://github.com/bluealloy/revm/pull/2181))
19+
- correct propagate features ([#2177](https://github.com/bluealloy/revm/pull/2177))
20+
21+
### Other
22+
23+
- remove CTX phantomdata from precompile providers ([#2178](https://github.com/bluealloy/revm/pull/2178))
24+
1025
## [1.0.0-alpha.3](https://github.com/bluealloy/revm/compare/revm-inspector-v1.0.0-alpha.2...revm-inspector-v1.0.0-alpha.3) - 2025-03-10
1126

1227
### Other

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.3"
4+
version = "1.0.0-alpha.4"
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.4](https://github.com/bluealloy/revm/compare/revm-interpreter-v16.0.0-alpha.3...revm-interpreter-v16.0.0-alpha.4) - 2025-03-11
10+
11+
### Fixed
12+
13+
- correct propagate features ([#2177](https://github.com/bluealloy/revm/pull/2177))
14+
915
## [16.0.0-alpha.3](https://github.com/bluealloy/revm/compare/revm-interpreter-v16.0.0-alpha.2...revm-interpreter-v16.0.0-alpha.3) - 2025-03-10
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.3"
4+
version = "16.0.0-alpha.4"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

0 commit comments

Comments
 (0)