Skip to content

Commit c346e0d

Browse files
chore: release
1 parent 7c60b22 commit c346e0d

File tree

18 files changed

+93
-24
lines changed

18 files changed

+93
-24
lines changed

Cargo.lock

Lines changed: 8 additions & 8 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
@@ -40,17 +40,17 @@ default-members = ["crates/revm"]
4040
[workspace.dependencies]
4141
# revm
4242
revm = { path = "crates/revm", version = "24.0.0", default-features = false }
43-
primitives = { path = "crates/primitives", package = "revm-primitives", version = "19.1.0", 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 = "20.0.0", default-features = false }
43+
primitives = { path = "crates/primitives", package = "revm-primitives", version = "19.2.0", default-features = false }
44+
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "4.1.0", default-features = false }
45+
database = { path = "crates/database", package = "revm-database", version = "5.0.0", default-features = false }
46+
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "4.1.0", default-features = false }
47+
state = { path = "crates/state", package = "revm-state", version = "5.0.0", default-features = false }
48+
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "21.0.0", default-features = false }
4949
inspector = { path = "crates/inspector", package = "revm-inspector", version = "5.0.0", default-features = false }
50-
precompile = { path = "crates/precompile", package = "revm-precompile", version = "21.0.0", default-features = false }
50+
precompile = { path = "crates/precompile", package = "revm-precompile", version = "21.1.0", default-features = false }
5151
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "5.0.0", default-features = false }
5252
context = { path = "crates/context", package = "revm-context", version = "5.0.0", default-features = false }
53-
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "5.0.0", default-features = false }
53+
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "6.0.0", default-features = false }
5454
handler = { path = "crates/handler", package = "revm-handler", version = "5.0.0", default-features = false }
5555
op-revm = { path = "crates/op-revm", package = "op-revm", version = "5.0.0", default-features = false }
5656

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.1.0](https://github.com/kogisin/revm/compare/revm-bytecode-v4.0.1...revm-bytecode-v4.1.0) - 2025-06-02
11+
12+
### Added
13+
14+
- transact multi tx ([#2517](https://github.com/kogisin/revm/pull/2517))
15+
1016
## [4.0.1](https://github.com/bluealloy/revm/compare/revm-bytecode-v4.0.0...revm-bytecode-v4.0.1) - 2025-05-22
1117

1218
### Other

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

crates/context/interface/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
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+
## [6.0.0](https://github.com/kogisin/revm/compare/revm-context-interface-v5.0.0...revm-context-interface-v6.0.0) - 2025-06-02
11+
12+
### Added
13+
14+
- Config blob basefee fraction ([#2551](https://github.com/kogisin/revm/pull/2551))
15+
- expand timestamp/block_number to u256 ([#2546](https://github.com/kogisin/revm/pull/2546))
16+
- transact multi tx ([#2517](https://github.com/kogisin/revm/pull/2517))
17+
18+
### Other
19+
20+
- *(docs)* context crate lints ([#2565](https://github.com/kogisin/revm/pull/2565))
21+
- ContextTr rm *_ref, and add *_mut fn ([#2560](https://github.com/kogisin/revm/pull/2560))
22+
- *(cfg)* add tx_chain_id_check fields. Optimize effective gas cost calc ([#2557](https://github.com/kogisin/revm/pull/2557))
23+
1024
## [5.0.0](https://github.com/bluealloy/revm/compare/revm-context-interface-v4.1.0...revm-context-interface-v5.0.0) - 2025-05-22
1125

1226
### 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 = "5.0.0"
4+
version = "6.0.0"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/database/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
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+
## [5.0.0](https://github.com/kogisin/revm/compare/revm-database-v4.0.1...revm-database-v5.0.0) - 2025-06-02
11+
12+
### Added
13+
14+
- added TxEnv::new_bench() add util function ([#2556](https://github.com/kogisin/revm/pull/2556))
15+
- transact multi tx ([#2517](https://github.com/kogisin/revm/pull/2517))
16+
1017
## [4.0.1](https://github.com/bluealloy/revm/compare/revm-database-v4.0.0...revm-database-v4.0.1) - 2025-05-22
1118

1219
### Other

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

crates/database/interface/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
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+
## [4.1.0](https://github.com/kogisin/revm/compare/revm-database-interface-v4.0.1...revm-database-interface-v4.1.0) - 2025-06-02
11+
12+
### Added
13+
14+
- added TxEnv::new_bench() add util function ([#2556](https://github.com/kogisin/revm/pull/2556))
15+
- transact multi tx ([#2517](https://github.com/kogisin/revm/pull/2517))
16+
1017
## [4.0.1](https://github.com/bluealloy/revm/compare/revm-database-interface-v4.0.0...revm-database-interface-v4.0.1) - 2025-05-22
1118

1219
### Other

crates/database/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-database-interface"
33
description = "Revm Database interface"
4-
version = "4.0.1"
4+
version = "4.1.0"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

0 commit comments

Comments
 (0)