Skip to content

Commit d66170e

Browse files
authored
Merge pull request #85 from bnb-chain/merge-v48
chore: merge upstream v48
2 parents a9752c9 + add28b2 commit d66170e

File tree

115 files changed

+4973
-1999
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+4973
-1999
lines changed

CHANGELOG.md

Lines changed: 34 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,43 @@
11
Because this is workspace with multi libraries, tags will be simplified, and with this document you can match version of project with git tag.
22

3+
# v48 tag
4+
date 23.10.2024
5+
Maintenance release. Bug fix for EIP-7702.
6+
7+
* `revm`: 16.0.0 -> 17.0.0 (✓ API compatible changes)
8+
* `revm-primitives`: 12.0.0 -> 13.0.0 (✓ API compatible changes)
9+
* `revm-test`: 1.0.0
10+
* `revm-interpreter`: 12.0.0 -> 13.0.0
11+
* `revm-precompile`: 13.0.0 -> 14.0.0
12+
13+
# v47 tag
14+
date: 17.10.2024
15+
Maintenance release. bumping new alloy-eip7702
16+
17+
* `revme`: 0.11.0 -> 1.0.0
18+
* `revm`: 15.0.0 -> 16.0.0
19+
* `revm-primitives`: 11.0.0 -> 12.0.0
20+
* `revm-precompile`: 12.0.0 -> 13.0.0
21+
* `revm-interpreter`: 11.0.0 -> 12.0.0
22+
23+
# v46 tag
24+
date: 17.10.2024
25+
Maintenance release. EIP-7702 newest changes, alloy-primitives bump.
26+
27+
* `revme`: 0.10.3 -> 0.11.0
28+
* `revm`: 14.0.3 -> 15.0.0
29+
* `revm-primitives`: 10.0.0 -> 11.0.0
30+
* `revm-precompile`: 11.0.3 -> 12.0.0
31+
* `revm-interpreter`: 10.0.3 -> 11.0.0
32+
333
# v45 tag
434
date: 26.09.2024
535

6-
Maintainance release.
36+
Maintenance release.
737

8-
* `revme`: 0.10.2 -> 0.10.3 (✓ API compatible changes)
9-
* `revm`: 14.0.2 -> 14.0.3 (✓ API compatible changes)
10-
* `revm-primitives`: 9.0.2 -> 10.0.0 (✓ API compatible changes)
38+
* `revme`: 0.10.2 -> 0.10.3
39+
* `revm`: 14.0.2 -> 14.0.3
40+
* `revm-primitives`: 9.0.2 -> 10.0.0
1141
* `revm-interpreter`: 10.0.2 -> 10.0.3
1242
* `revm-precompile`: 11.0.2 -> 11.0.3
1343

Cargo.lock

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

bins/revm-test/CHANGELOG.md

Lines changed: 331 additions & 0 deletions
Large diffs are not rendered by default.

bins/revm-test/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "revm-test"
3-
version = "0.1.0"
3+
version = "1.0.0"
44
edition = "2021"
55
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
66

77
[dependencies]
88
bytes = "1.7"
99
hex = "0.4"
10-
revm = { path = "../../crates/revm", version = "14.0.3", default-features=false }
10+
revm = { path = "../../crates/revm", version = "17.0.0", default-features=false }
1111
microbench = "0.5"
1212
alloy-sol-macro = "0.8.0"
1313
alloy-sol-types = "0.8.2"

bins/revme/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [1.0.1](https://github.com/bluealloy/revm/compare/revme-v1.0.0...revme-v1.0.1) - 2024-10-23
10+
11+
### Other
12+
13+
- update Cargo.lock dependencies
14+
15+
## [1.0.0](https://github.com/bluealloy/revm/compare/revme-v0.11.0...revme-v1.0.0) - 2024-09-26
16+
17+
### Other
18+
19+
- update Cargo.lock dependencies
20+
21+
## [0.11.0](https://github.com/bluealloy/revm/compare/revme-v0.10.3...revme-v0.11.0) - 2024-10-17
22+
23+
### Added
24+
25+
- Rename PRAGUE_EOF to OSAKA ([#1822](https://github.com/bluealloy/revm/pull/1822))
26+
- *(EIP-7702)* devnet-4 changes ([#1821](https://github.com/bluealloy/revm/pull/1821))
27+
28+
### Other
29+
30+
- remove test u8 check ([#1825](https://github.com/bluealloy/revm/pull/1825))
31+
932
## [0.10.3](https://github.com/bluealloy/revm/compare/revme-v0.10.2...revme-v0.10.3) - 2024-09-26
1033

1134
### Other

bins/revme/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,15 @@ keywords = ["ethereum", "evm"]
66
license = "MIT"
77
repository = "https://github.com/bluealloy/revm"
88
description = "Rust Ethereum Virtual Machine Executable"
9-
version = "0.10.3"
9+
version = "2.0.0"
1010

1111
[dependencies]
1212
hash-db = "0.15"
1313
hex = "0.4"
14-
hashbrown = "0.14"
1514
indicatif = "0.17"
1615
microbench = "0.5"
1716
plain_hasher = "0.2"
18-
revm = { path = "../../crates/revm", version = "14.0.3", default-features = false, features = [
17+
revm = { path = "../../crates/revm", version = "17.0.0", default-features = false, features = [
1918
"ethersdb",
2019
"std",
2120
"serde-json",

bins/revme/src/cmd/statetest/runner.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ pub fn execute_test_suite(
336336

337337
// Enable EOF in Prague tests.
338338
let spec_id = if spec_name == SpecName::Prague {
339-
SpecId::PRAGUE_EOF
339+
SpecId::OSAKA
340340
} else {
341341
spec_name.to_spec_id()
342342
};

crates/interpreter/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [13.0.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v12.0.0...revm-interpreter-v13.0.0) - 2024-10-23
10+
11+
### Other
12+
13+
- updated the following local packages: revm-primitives
14+
15+
## [12.0.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v11.0.0...revm-interpreter-v12.0.0) - 2024-10-17
16+
17+
### Other
18+
19+
- updated the following local packages: revm-primitives
20+
21+
## [11.0.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v10.0.3...revm-interpreter-v11.0.0) - 2024-10-17
22+
23+
### Other
24+
25+
- updated the following local packages: revm-primitives
26+
927
## [10.0.3](https://github.com/bluealloy/revm/compare/revm-interpreter-v10.0.2...revm-interpreter-v10.0.3) - 2024-09-26
1028

1129
### Other

crates/interpreter/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords = ["no_std", "ethereum", "evm", "revm", "interpreter"]
66
license = "MIT"
77
name = "revm-interpreter"
88
repository = "https://github.com/bluealloy/revm"
9-
version = "10.0.3"
9+
version = "13.0.0"
1010
readme = "../../README.md"
1111

1212
[package.metadata.docs.rs]
@@ -22,7 +22,7 @@ rust_2018_idioms = "deny"
2222
all = "warn"
2323

2424
[dependencies]
25-
revm-primitives = { path = "../primitives", version = "10.0.0", default-features = false }
25+
revm-primitives = { path = "../primitives", version = "13.0.0", default-features = false }
2626

2727
paste = { version = "1.0", optional = true }
2828
phf = { version = "0.11", default-features = false, optional = true, features = [

crates/precompile/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [14.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v13.0.0...revm-precompile-v14.0.0) - 2024-10-23
10+
11+
### Other
12+
13+
- updated the following local packages: revm-primitives
14+
15+
## [13.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v12.0.0...revm-precompile-v13.0.0) - 2024-10-17
16+
17+
### Other
18+
19+
- updated the following local packages: revm-primitives
20+
21+
## [12.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v11.0.3...revm-precompile-v12.0.0) - 2024-10-17
22+
23+
### Added
24+
25+
- Rename PRAGUE_EOF to OSAKA ([#1822](https://github.com/bluealloy/revm/pull/1822))
26+
927
## [11.0.3](https://github.com/bluealloy/revm/compare/revm-precompile-v11.0.2...revm-precompile-v11.0.3) - 2024-09-26
1028

1129
### Other

0 commit comments

Comments
 (0)