Skip to content

Commit f176362

Browse files
chore: release v1.0.0
1 parent f742477 commit f176362

File tree

20 files changed

+86
-25
lines changed

20 files changed

+86
-25
lines changed

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: 7 additions & 7 deletions
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.5", default-features = false }
41+
revm = { path = "crates/revm", version = "20.0.0-alpha.6", default-features = false }
4242
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 }
43+
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "1.0.0-alpha.4", default-features = false }
44+
database = { path = "crates/database", package = "revm-database", version = "1.0.0-alpha.4", default-features = false }
4545
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.5", default-features = false }
46+
state = { path = "crates/state", package = "revm-state", version = "1.0.0-alpha.4", default-features = false }
47+
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "16.0.0-alpha.6", default-features = false }
4848
inspector = { path = "crates/inspector", package = "revm-inspector", version = "1.0.0-alpha.5", default-features = false }
4949
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.4", default-features = false }
51+
context = { path = "crates/context", package = "revm-context", version = "1.0.0-alpha.5", default-features = false }
5252
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 }
53+
handler = { path = "crates/handler", package = "revm-handler", version = "1.0.0-alpha.6", default-features = false }
5454

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

bins/revme/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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.6](https://github.com/NomicFoundation/revm/compare/revme-v3.0.0-alpha.5...revme-v3.0.0-alpha.6) - 2025-03-14
10+
11+
### Other
12+
13+
- updated the following local packages: revm-bytecode
14+
915
## [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
1016

1117
### Added

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

crates/bytecode/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+
## [1.0.0-alpha.4](https://github.com/NomicFoundation/revm/compare/revm-bytecode-v1.0.0-alpha.3...revm-bytecode-v1.0.0-alpha.4) - 2025-03-14
11+
12+
### Fixed
13+
14+
- JumpMap from_slice requires len ([#2203](https://github.com/NomicFoundation/revm/pull/2203))
15+
1016
## [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
1117

1218
### 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 = "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/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+
## [1.0.0-alpha.5](https://github.com/NomicFoundation/revm/compare/revm-context-v1.0.0-alpha.4...revm-context-v1.0.0-alpha.5) - 2025-03-14
11+
12+
### Other
13+
14+
- updated the following local packages: revm-bytecode
15+
1016
## [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
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 = "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/database/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+
## [1.0.0-alpha.4](https://github.com/NomicFoundation/revm/compare/revm-database-v1.0.0-alpha.3...revm-database-v1.0.0-alpha.4) - 2025-03-14
11+
12+
### Other
13+
14+
- updated the following local packages: revm-bytecode
15+
1016
## [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
1117

1218
### Fixed

crates/database/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-database"
33
description = "Revm Database implementations"
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

0 commit comments

Comments
 (0)