Skip to content

Commit 1d8dc78

Browse files
chore: release
1 parent 82d2be1 commit 1d8dc78

File tree

14 files changed

+104
-18
lines changed

14 files changed

+104
-18
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ default-members = ["crates/revm"]
4242
[workspace.dependencies]
4343
# revm
4444
revm = { path = "crates/revm", version = "29.0.0", default-features = false }
45-
primitives = { path = "crates/primitives", package = "revm-primitives", version = "20.2.1", default-features = false }
46-
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "6.2.2", default-features = false }
47-
database = { path = "crates/database", package = "revm-database", version = "7.0.5", default-features = false }
48-
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "7.0.5", default-features = false }
49-
state = { path = "crates/state", package = "revm-state", version = "7.0.5", default-features = false }
45+
primitives = { path = "crates/primitives", package = "revm-primitives", version = "21.0.0", default-features = false }
46+
bytecode = { path = "crates/bytecode", package = "revm-bytecode", version = "6.2.3", default-features = false }
47+
database = { path = "crates/database", package = "revm-database", version = "7.0.6", default-features = false }
48+
database-interface = { path = "crates/database/interface", package = "revm-database-interface", version = "7.0.6", default-features = false }
49+
state = { path = "crates/state", package = "revm-state", version = "7.0.6", default-features = false }
5050
interpreter = { path = "crates/interpreter", package = "revm-interpreter", version = "25.0.2", default-features = false }
5151
inspector = { path = "crates/inspector", package = "revm-inspector", version = "10.0.0", default-features = false }
52-
precompile = { path = "crates/precompile", package = "revm-precompile", version = "27.0.0", default-features = false }
52+
precompile = { path = "crates/precompile", package = "revm-precompile", version = "28.0.0", default-features = false }
5353
statetest-types = { path = "crates/statetest-types", package = "revm-statetest-types", version = "9.0.2", default-features = false }
5454
context = { path = "crates/context", package = "revm-context", version = "9.0.2", default-features = false }
5555
context-interface = { path = "crates/context/interface", package = "revm-context-interface", version = "10.1.0", default-features = false }

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+
## [6.2.3](https://github.com/bluealloy/revm/compare/revm-bytecode-v6.2.2...revm-bytecode-v6.2.3) - 2025-09-24
11+
12+
### Fixed
13+
14+
- *(bytecode)* exclude MLOAD from modifies_memory and update test ([#3004](https://github.com/bluealloy/revm/pull/3004))
15+
- Apply spelling corrections from PRs #2926, #2915, #2908 ([#2978](https://github.com/bluealloy/revm/pull/2978))
16+
17+
### Other
18+
19+
- use offset_from_unsigned ([#2999](https://github.com/bluealloy/revm/pull/2999))
20+
- add SECURITY.md ([#2956](https://github.com/bluealloy/revm/pull/2956))
21+
1022
## [6.2.2](https://github.com/bluealloy/revm/compare/revm-bytecode-v6.2.1...revm-bytecode-v6.2.2) - 2025-08-23
1123

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

crates/database/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.6](https://github.com/bluealloy/revm/compare/revm-database-v7.0.5...revm-database-v7.0.6) - 2025-09-24
11+
12+
### Fixed
13+
14+
- Apply spelling corrections from PRs #2926, #2915, #2908 ([#2978](https://github.com/bluealloy/revm/pull/2978))
15+
16+
### Other
17+
18+
- pretty print state in revme statetest ([#2979](https://github.com/bluealloy/revm/pull/2979))
19+
- *(database)* avoid panic by conditionally using block_in_place ([#2927](https://github.com/bluealloy/revm/pull/2927))
20+
- add SECURITY.md ([#2956](https://github.com/bluealloy/revm/pull/2956))
21+
1022
## [7.0.5](https://github.com/bluealloy/revm/compare/revm-database-v7.0.4...revm-database-v7.0.5) - 2025-08-23
1123

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

crates/database/interface/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [7.0.6](https://github.com/bluealloy/revm/compare/revm-database-interface-v7.0.5...revm-database-interface-v7.0.6) - 2025-09-24
11+
12+
### Fixed
13+
14+
- Apply spelling corrections from PRs #2926, #2915, #2908 ([#2978](https://github.com/bluealloy/revm/pull/2978))
15+
16+
### Other
17+
18+
- *(database)* avoid panic by conditionally using block_in_place ([#2927](https://github.com/bluealloy/revm/pull/2927))
19+
- add SECURITY.md ([#2956](https://github.com/bluealloy/revm/pull/2956))
20+
1021
## [7.0.5](https://github.com/bluealloy/revm/compare/revm-database-interface-v7.0.4...revm-database-interface-v7.0.5) - 2025-08-23
1122

1223
### 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 = "7.0.5"
4+
version = "7.0.6"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

crates/precompile/CHANGELOG.md

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

5454
## [Unreleased]
5555

56+
## [28.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v27.0.0...revm-precompile-v28.0.0) - 2025-09-24
57+
58+
### Added
59+
60+
- [**breaking**] Remove kzg-rs ([#2909](https://github.com/bluealloy/revm/pull/2909))
61+
62+
### Fixed
63+
64+
- racecondition return on install_crypto fn ([#2997](https://github.com/bluealloy/revm/pull/2997))
65+
- Apply spelling corrections from PRs #2926, #2915, #2908 ([#2978](https://github.com/bluealloy/revm/pull/2978))
66+
67+
### Other
68+
69+
- Remove libsecp256k1 parity lib ([#2954](https://github.com/bluealloy/revm/pull/2954))
70+
- add SECURITY.md ([#2956](https://github.com/bluealloy/revm/pull/2956))
71+
- add amsterdam in spec id ([#2934](https://github.com/bluealloy/revm/pull/2934))
72+
- cargo update ([#2930](https://github.com/bluealloy/revm/pull/2930))
73+
- *(precompile)* add new specific `PrecompileError` variants ([#2907](https://github.com/bluealloy/revm/pull/2907))
74+
- add Precompil::into_precompile ([#2913](https://github.com/bluealloy/revm/pull/2913))
75+
5676
## [25.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v24.0.1...revm-precompile-v25.0.0) - 2025-07-23
5777

5878
### Added

crates/precompile/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-precompile"
33
description = "Revm Precompiles - Ethereum compatible precompiled contracts"
4-
version = "27.0.0"
4+
version = "28.0.0"
55
authors.workspace = true
66
edition.workspace = true
77
keywords.workspace = true

0 commit comments

Comments
 (0)