Skip to content

Commit ef188c0

Browse files
chore: release
1 parent 0f8081b commit ef188c0

File tree

32 files changed

+196
-44
lines changed

32 files changed

+196
-44
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: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -39,20 +39,20 @@ default-members = ["crates/revm"]
3939

4040
[workspace.dependencies]
4141
# revm
42-
revm = { path = "crates/revm", version = "25.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 = "5.0.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 }
49-
inspector = { path = "crates/inspector", package = "revm-inspector", version = "6.0.0", default-features = false }
50-
precompile = { path = "crates/precompile", package = "revm-precompile", version = "22.0.0", default-features = false }
51-
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "7.0.0", default-features = false }
52-
context = { path = "crates/context", package = "revm-context", version = "6.0.0", default-features = false }
53-
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "6.0.0", default-features = false }
54-
handler = { path = "crates/handler", package = "revm-handler", version = "6.0.0", default-features = false }
55-
op-revm = { path = "crates/op-revm", package = "op-revm", version = "6.0.0", default-features = false }
42+
revm = { path = "crates/revm", version = "26.0.0", default-features = false }
43+
primitives = { path = "crates/primitives", package = "revm-primitives", version = "19.3.0", default-features = false }
44+
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "5.0.0", default-features = false }
45+
database = { path = "crates/database", package = "revm-database", version = "5.1.0", default-features = false }
46+
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "5.1.0", default-features = false }
47+
state = { path = "crates/state", package = "revm-state", version = "5.1.0", default-features = false }
48+
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "21.1.0", default-features = false }
49+
inspector = { path = "crates/inspector", package = "revm-inspector", version = "7.0.0", default-features = false }
50+
precompile = { path = "crates/precompile", package = "revm-precompile", version = "23.0.0", default-features = false }
51+
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "7.1.0", default-features = false }
52+
context = { path = "crates/context", package = "revm-context", version = "7.0.0", default-features = false }
53+
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "7.0.0", default-features = false }
54+
handler = { path = "crates/handler", package = "revm-handler", version = "7.0.0", default-features = false }
55+
op-revm = { path = "crates/op-revm", package = "op-revm", version = "6.1.0", default-features = false }
5656

5757
# alloy
5858
alloy-eip2930 = { version = "0.2.1", default-features = false }

bins/revme/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [6.1.0](https://github.com/receivingpotman/revm/compare/revme-v6.0.0...revme-v6.1.0) - 2025-06-14
10+
11+
### Added
12+
13+
- *(precompile)* rug/gmp-based modexp ([#2596](https://github.com/receivingpotman/revm/pull/2596))
14+
- change blob_max_count to max_blobs_per_tx ([#2608](https://github.com/receivingpotman/revm/pull/2608))
15+
16+
### Other
17+
18+
- rename `transact` methods ([#2616](https://github.com/receivingpotman/revm/pull/2616))
19+
920
## [6.0.0](https://github.com/bluealloy/revm/compare/revme-v5.1.1...revme-v6.0.0) - 2025-06-06
1021

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

crates/bytecode/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ 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/receivingpotman/revm/compare/revm-bytecode-v4.1.0...revm-bytecode-v5.0.0) - 2025-06-14
11+
12+
### Added
13+
14+
- *(precompile)* rug/gmp-based modexp ([#2596](https://github.com/receivingpotman/revm/pull/2596))
15+
- add clz opcode ([#2598](https://github.com/receivingpotman/revm/pull/2598))
16+
17+
### Other
18+
19+
- *(tests)* extend test for is_valid jumptable ([#2622](https://github.com/receivingpotman/revm/pull/2622))
20+
- faster JumpTable bits lookup ([#2618](https://github.com/receivingpotman/revm/pull/2618))
21+
1022
## [4.1.0](https://github.com/bluealloy/revm/compare/revm-bytecode-v4.0.1...revm-bytecode-v4.1.0) - 2025-06-06
1123

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

crates/context/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [7.0.0](https://github.com/receivingpotman/revm/compare/revm-context-v6.0.0...revm-context-v7.0.0) - 2025-06-14
11+
12+
### Added
13+
14+
- *(precompile)* rug/gmp-based modexp ([#2596](https://github.com/receivingpotman/revm/pull/2596))
15+
- change blob_max_count to max_blobs_per_tx ([#2608](https://github.com/receivingpotman/revm/pull/2608))
16+
- add optional priority fee check configuration ([#2588](https://github.com/receivingpotman/revm/pull/2588))
17+
18+
### Other
19+
20+
- optimize warm_preloaded_addresses reset ([#2625](https://github.com/receivingpotman/revm/pull/2625))
21+
- rename `transact` methods ([#2616](https://github.com/receivingpotman/revm/pull/2616))
22+
1023
## [6.0.0](https://github.com/bluealloy/revm/compare/revm-context-v5.0.1...revm-context-v6.0.0) - 2025-06-06
1124

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

crates/context/interface/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [7.0.0](https://github.com/receivingpotman/revm/compare/revm-context-interface-v6.0.0...revm-context-interface-v7.0.0) - 2025-06-14
11+
12+
### Added
13+
14+
- *(precompile)* rug/gmp-based modexp ([#2596](https://github.com/receivingpotman/revm/pull/2596))
15+
- change blob_max_count to max_blobs_per_tx ([#2608](https://github.com/receivingpotman/revm/pull/2608))
16+
- add optional priority fee check configuration ([#2588](https://github.com/receivingpotman/revm/pull/2588))
17+
18+
### Other
19+
20+
- rename `transact` methods ([#2616](https://github.com/receivingpotman/revm/pull/2616))
21+
1022
## [6.0.0](https://github.com/bluealloy/revm/compare/revm-context-interface-v5.0.0...revm-context-interface-v6.0.0) - 2025-06-06
1123

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

0 commit comments

Comments
 (0)