Skip to content

Commit d5af79d

Browse files
chore: release
1 parent bad1af7 commit d5af79d

32 files changed

+143
-43
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,19 @@ default-members = ["crates/revm"]
3939

4040
[workspace.dependencies]
4141
# revm
42-
revm = { path = "crates/revm", version = "23.1.0", default-features = false }
43-
primitives = { path = "crates/primitives", package = "revm-primitives", version = "19.0.0", default-features = false }
44-
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "4.0.0", default-features = false }
45-
database = { path = "crates/database", package = "revm-database", version = "4.0.0", default-features = false }
46-
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "4.0.0", default-features = false }
47-
state = { path = "crates/state", package = "revm-state", version = "4.0.0", default-features = false }
48-
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "19.1.0", default-features = false }
49-
inspector = { path = "crates/inspector", package = "revm-inspector", version = "4.1.0", default-features = false }
50-
precompile = { path = "crates/precompile", package = "revm-precompile", version = "20.1.0", default-features = false }
51-
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "4.1.0", default-features = false }
52-
context = { path = "crates/context", package = "revm-context", version = "4.1.0", default-features = false }
53-
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "4.1.0", default-features = false }
54-
handler = { path = "crates/handler", package = "revm-handler", version = "4.1.0", default-features = false }
42+
revm = { path = "crates/revm", version = "23.1.1", default-features = false }
43+
primitives = { path = "crates/primitives", package = "revm-primitives", version = "19.0.1", default-features = false }
44+
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "4.0.1", default-features = false }
45+
database = { path = "crates/database", package = "revm-database", version = "4.0.1", default-features = false }
46+
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "4.0.1", default-features = false }
47+
state = { path = "crates/state", package = "revm-state", version = "4.0.1", default-features = false }
48+
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "19.2.0", default-features = false }
49+
inspector = { path = "crates/inspector", package = "revm-inspector", version = "4.1.1", default-features = false }
50+
precompile = { path = "crates/precompile", package = "revm-precompile", version = "20.1.1", default-features = false }
51+
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "4.1.1", default-features = false }
52+
context = { path = "crates/context", package = "revm-context", version = "4.2.0", default-features = false }
53+
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "4.1.1", default-features = false }
54+
handler = { path = "crates/handler", package = "revm-handler", version = "4.1.1", default-features = false }
5555

5656
# alloy
5757
alloy-eip2930 = { version = "0.2.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+
## [5.0.1](https://github.com/kogisin/revm/compare/revme-v5.0.0...revme-v5.0.1) - 2025-05-14
10+
11+
### Other
12+
13+
- Storage Types Alias ([#2461](https://github.com/kogisin/revm/pull/2461))
14+
915
## [5.0.0](https://github.com/bluealloy/revm/compare/revme-v4.1.0...revme-v5.0.0) - 2025-05-07
1016

1117
Dependency bump

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 = "5.0.0"
4+
version = "5.0.1"
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+
## [4.0.1](https://github.com/kogisin/revm/compare/revm-bytecode-v4.0.0...revm-bytecode-v4.0.1) - 2025-05-14
11+
12+
### Other
13+
14+
- updated the following local packages: revm-primitives
15+
1016
## [4.0.0](https://github.com/bluealloy/revm/compare/revm-bytecode-v3.0.0...revm-bytecode-v4.0.0) - 2025-05-07
1117

1218
### Added

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

crates/context/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [4.2.0](https://github.com/kogisin/revm/compare/revm-context-v4.1.0...revm-context-v4.2.0) - 2025-05-14
11+
12+
### Added
13+
14+
- make Journal::set_code to be EIP-7702 zero address bytecode aware ([#2511](https://github.com/kogisin/revm/pull/2511))
15+
16+
### Other
17+
18+
- Storage Types Alias ([#2461](https://github.com/kogisin/revm/pull/2461))
19+
1020
## [4.1.0](https://github.com/bluealloy/revm/compare/revm-context-v4.0.0...revm-context-v4.1.0) - 2025-05-07
1121

1222
Dependency bump

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 = "4.1.0"
4+
version = "4.2.0"
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+
## [4.1.1](https://github.com/kogisin/revm/compare/revm-context-interface-v4.1.0...revm-context-interface-v4.1.1) - 2025-05-14
11+
12+
### Other
13+
14+
- Storage Types Alias ([#2461](https://github.com/kogisin/revm/pull/2461))
15+
1016
## [4.1.0](https://github.com/bluealloy/revm/compare/revm-context-interface-v4.0.0...revm-context-interface-v4.1.0) - 2025-05-07
1117

1218
Dependency bump

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

0 commit comments

Comments
 (0)