Skip to content

Commit 84e7a26

Browse files
committed
chore: release
Signed-off-by: GitHub Action <action@github.com>
1 parent 15ef150 commit 84e7a26

File tree

12 files changed

+129
-16
lines changed

12 files changed

+129
-16
lines changed

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bins/revm-test/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
[dependencies]
88
bytes = "1.6"
99
hex = "0.4"
10-
revm = { path = "../../crates/revm", version = "8.0.0", default-features=false }
10+
revm = { path = "../../crates/revm", version = "9.0.0", default-features=false }
1111
microbench = "0.5"
1212
alloy-sol-macro = "0.7.0"
1313
alloy-sol-types = "0.7.0"

bins/revme/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.5.0](https://github.com/bluealloy/revm/compare/revme-v0.4.0...revme-v0.5.0) - 2024-05-08
10+
11+
### Added
12+
- add trace option in `revme evm` ([#1376](https://github.com/bluealloy/revm/pull/1376))
13+
- *(revme)* add --keep-going to statetest command ([#1277](https://github.com/bluealloy/revm/pull/1277))
14+
- EOF (Ethereum Object Format) ([#1143](https://github.com/bluealloy/revm/pull/1143))
15+
16+
### Fixed
17+
- *(revme)* Print one json outcome in statetest ([#1347](https://github.com/bluealloy/revm/pull/1347))
18+
- Drops check for .json when testing a single file ([#1301](https://github.com/bluealloy/revm/pull/1301))
19+
20+
### Other
21+
- *(revme)* increment statetest bar *after* running the test ([#1377](https://github.com/bluealloy/revm/pull/1377))
22+
- *(interpreter)* branch less in as_usize_or_fail ([#1374](https://github.com/bluealloy/revm/pull/1374))
23+
924
## [0.4.0](https://github.com/bluealloy/revm/compare/revme-v0.3.1...revme-v0.4.0) - 2024-04-02
1025

1126
### Added

bins/revme/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords = ["ethereum", "evm"]
66
license = "MIT"
77
repository = "https://github.com/bluealloy/revm"
88
description = "Rust Ethereum Virtual Machine Executable"
9-
version = "0.4.0"
9+
version = "0.5.0"
1010

1111
[dependencies]
1212
hash-db = "0.15"
@@ -15,7 +15,7 @@ hashbrown = "0.14"
1515
indicatif = "0.17"
1616
microbench = "0.5"
1717
plain_hasher = "0.2"
18-
revm = { path = "../../crates/revm", version = "8.0.0", default-features = false, features = [
18+
revm = { path = "../../crates/revm", version = "9.0.0", default-features = false, features = [
1919
"ethersdb",
2020
"std",
2121
"serde-json",

crates/interpreter/CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,40 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [5.0.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v4.0.0...revm-interpreter-v5.0.0) - 2024-05-08
10+
11+
### Added
12+
- implement EIP-2935 ([#1354](https://github.com/bluealloy/revm/pull/1354))
13+
- parse opcodes from strings ([#1358](https://github.com/bluealloy/revm/pull/1358))
14+
- *(interpreter)* add helpers for spending all gas ([#1360](https://github.com/bluealloy/revm/pull/1360))
15+
- add helper methods to CallInputs ([#1345](https://github.com/bluealloy/revm/pull/1345))
16+
- *(revm)* make `FrameOrResult` serializable ([#1282](https://github.com/bluealloy/revm/pull/1282))
17+
- add flag to force hashbrown usage ([#1284](https://github.com/bluealloy/revm/pull/1284))
18+
- EOF (Ethereum Object Format) ([#1143](https://github.com/bluealloy/revm/pull/1143))
19+
- *(interpreter)* derive Eq for InterpreterAction ([#1262](https://github.com/bluealloy/revm/pull/1262))
20+
- *(interpreter)* remove SPEC generic from gas calculation functions ([#1243](https://github.com/bluealloy/revm/pull/1243))
21+
- *(interpreter)* test Host object-safety, allow `dyn Host` in instructions ([#1245](https://github.com/bluealloy/revm/pull/1245))
22+
23+
### Fixed
24+
- return the correct error in resize_memory ([#1359](https://github.com/bluealloy/revm/pull/1359))
25+
- correct some stack IO ([#1302](https://github.com/bluealloy/revm/pull/1302))
26+
27+
### Other
28+
- refactor lints ([#1386](https://github.com/bluealloy/revm/pull/1386))
29+
- remove unused file ([#1379](https://github.com/bluealloy/revm/pull/1379))
30+
- *(interpreter)* branch less in as_usize_or_fail ([#1374](https://github.com/bluealloy/revm/pull/1374))
31+
- re-use num_words in gas::cost_per_word ([#1371](https://github.com/bluealloy/revm/pull/1371))
32+
- *(interpreter)* rewrite gas accounting for memory expansion ([#1361](https://github.com/bluealloy/revm/pull/1361))
33+
- remove bounds check in DUP, SWAP/EXCHANGE ([#1346](https://github.com/bluealloy/revm/pull/1346))
34+
- don't clone bytes in `Bytecode::bytes` ([#1344](https://github.com/bluealloy/revm/pull/1344))
35+
- shrink OpCodeInfo and add more methods ([#1307](https://github.com/bluealloy/revm/pull/1307))
36+
- *(interpreter)* rename some macros ([#1304](https://github.com/bluealloy/revm/pull/1304))
37+
- *(interpreter)* remove EOF branch in CODE{SIZE,COPY} ([#1308](https://github.com/bluealloy/revm/pull/1308))
38+
- fix some warnings ([#1305](https://github.com/bluealloy/revm/pull/1305))
39+
- *(interpreter)* rename wrapping_* opcodes ([#1306](https://github.com/bluealloy/revm/pull/1306))
40+
- Add the modifies_memory macro ([#1270](https://github.com/bluealloy/revm/pull/1270))
41+
- *(interpreter)* use `pop_top!` where possible ([#1267](https://github.com/bluealloy/revm/pull/1267))
42+
943
## [4.0.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v3.4.0...revm-interpreter-v4.0.0) - 2024-04-02
1044

1145
### Added

crates/interpreter/Cargo.toml

+2-2
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 = "4.0.0"
9+
version = "5.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 = "3.1.1", default-features = false }
25+
revm-primitives = { path = "../primitives", version = "4.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

+13
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [7.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v6.0.0...revm-precompile-v7.0.0) - 2024-05-08
10+
11+
### Added
12+
- *(precompile)* add Prague hardfork specification ([#1387](https://github.com/bluealloy/revm/pull/1387))
13+
- add flag to force hashbrown usage ([#1284](https://github.com/bluealloy/revm/pull/1284))
14+
- EOF (Ethereum Object Format) ([#1143](https://github.com/bluealloy/revm/pull/1143))
15+
16+
### Other
17+
- bump c-kzg to 1.0.2 ([#1390](https://github.com/bluealloy/revm/pull/1390))
18+
- refactor lints ([#1386](https://github.com/bluealloy/revm/pull/1386))
19+
- *(deps)* bump aurora-engine-modexp from 1.0.0 to 1.1.0 ([#1339](https://github.com/bluealloy/revm/pull/1339))
20+
- *(deps)* bump secp256k1 from 0.28.2 to 0.29.0 ([#1260](https://github.com/bluealloy/revm/pull/1260))
21+
922
## [6.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v5.1.0...revm-precompile-v6.0.0) - 2024-04-02
1023

1124
### Fixed

crates/precompile/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords = ["no_std", "ethereum", "evm", "revm", "precompiles"]
66
license = "MIT"
77
name = "revm-precompile"
88
repository = "https://github.com/bluealloy/revm"
9-
version = "6.0.0"
9+
version = "7.0.0"
1010

1111
[package.metadata.docs.rs]
1212
all-features = true
@@ -21,7 +21,7 @@ rust_2018_idioms = "deny"
2121
all = "warn"
2222

2323
[dependencies]
24-
revm-primitives = { path = "../primitives", version = "3.1.1", default-features = false }
24+
revm-primitives = { path = "../primitives", version = "4.0.0", default-features = false }
2525
bn = { package = "substrate-bn", version = "0.6", default-features = false }
2626
once_cell = { version = "1.19", default-features = false, features = ["alloc"] }
2727
ripemd = { version = "0.1", default-features = false }

crates/primitives/CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [4.0.0](https://github.com/bluealloy/revm/compare/revm-primitives-v3.1.1...revm-primitives-v4.0.0) - 2024-05-08
10+
11+
### Added
12+
- implement EIP-2935 ([#1354](https://github.com/bluealloy/revm/pull/1354))
13+
- add `Bytecode::original_bytecode_slice` to match `BytecodeLocked` ([#1286](https://github.com/bluealloy/revm/pull/1286))
14+
- add flag to force hashbrown usage ([#1284](https://github.com/bluealloy/revm/pull/1284))
15+
- EOF (Ethereum Object Format) ([#1143](https://github.com/bluealloy/revm/pull/1143))
16+
- pass rand feature to alloy_primitives ([#1276](https://github.com/bluealloy/revm/pull/1276))
17+
- *(interpreter)* remove SPEC generic from gas calculation functions ([#1243](https://github.com/bluealloy/revm/pull/1243))
18+
19+
### Other
20+
- bump c-kzg to 1.0.2 ([#1390](https://github.com/bluealloy/revm/pull/1390))
21+
- refactor lints ([#1386](https://github.com/bluealloy/revm/pull/1386))
22+
- add blob_count and max_blobs to `TooManyBlobs` err enum ([#1375](https://github.com/bluealloy/revm/pull/1375))
23+
- bump alloy & specify dep rev ([#1380](https://github.com/bluealloy/revm/pull/1380))
24+
- don't clone bytes in `Bytecode::bytes` ([#1344](https://github.com/bluealloy/revm/pull/1344))
25+
- shrink OpCodeInfo and add more methods ([#1307](https://github.com/bluealloy/revm/pull/1307))
26+
- Implement `with_chain_id` for `CfgEnv` ([#1327](https://github.com/bluealloy/revm/pull/1327))
27+
- *(interpreter)* remove EOF branch in CODE{SIZE,COPY} ([#1308](https://github.com/bluealloy/revm/pull/1308))
28+
- Update documentation ([#1275](https://github.com/bluealloy/revm/pull/1275))
29+
930
## [3.1.1](https://github.com/bluealloy/revm/compare/revm-primitives-v3.1.0...revm-primitives-v3.1.1) - 2024-04-02
1031

1132
### Fixed

crates/primitives/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords = ["no_std", "ethereum", "evm", "revm", "types"]
66
license = "MIT"
77
name = "revm-primitives"
88
repository = "https://github.com/bluealloy/revm"
9-
version = "3.1.1"
9+
version = "4.0.0"
1010
readme = "../../README.md"
1111

1212
[package.metadata.docs.rs]

crates/revm/CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [9.0.0](https://github.com/bluealloy/revm/compare/revm-v8.0.0...revm-v9.0.0) - 2024-05-08
10+
11+
### Added
12+
- add a hook to execute individual frames ([#1369](https://github.com/bluealloy/revm/pull/1369))
13+
- *(Handler)* Add ClearHandle ([#1368](https://github.com/bluealloy/revm/pull/1368))
14+
- Add uniswap V2 WETH-USDC swap example ([#1353](https://github.com/bluealloy/revm/pull/1353))
15+
- *(interpreter)* add helpers for spending all gas ([#1360](https://github.com/bluealloy/revm/pull/1360))
16+
- add helper methods to CallInputs ([#1345](https://github.com/bluealloy/revm/pull/1345))
17+
- *(revm)* make `FrameOrResult` serializable ([#1282](https://github.com/bluealloy/revm/pull/1282))
18+
- add flag to force hashbrown usage ([#1284](https://github.com/bluealloy/revm/pull/1284))
19+
- EOF (Ethereum Object Format) ([#1143](https://github.com/bluealloy/revm/pull/1143))
20+
- *(`db`)* Introduce `alloydb` ([#1257](https://github.com/bluealloy/revm/pull/1257))
21+
- *(interpreter)* remove SPEC generic from gas calculation functions ([#1243](https://github.com/bluealloy/revm/pull/1243))
22+
- *(interpreter)* test Host object-safety, allow `dyn Host` in instructions ([#1245](https://github.com/bluealloy/revm/pull/1245))
23+
24+
### Fixed
25+
- return the correct error in resize_memory ([#1359](https://github.com/bluealloy/revm/pull/1359))
26+
27+
### Other
28+
- refactor lints ([#1386](https://github.com/bluealloy/revm/pull/1386))
29+
- bump alloy & specify dep rev ([#1380](https://github.com/bluealloy/revm/pull/1380))
30+
- *(interpreter)* branch less in as_usize_or_fail ([#1374](https://github.com/bluealloy/revm/pull/1374))
31+
- *(ci)* bump action/deploy ([#1372](https://github.com/bluealloy/revm/pull/1372))
32+
- shrink OpCodeInfo and add more methods ([#1307](https://github.com/bluealloy/revm/pull/1307))
33+
- *(deps)* bump anyhow from 1.0.81 to 1.0.82 ([#1293](https://github.com/bluealloy/revm/pull/1293))
34+
- fix some warnings ([#1305](https://github.com/bluealloy/revm/pull/1305))
35+
- Update documentation ([#1275](https://github.com/bluealloy/revm/pull/1275))
36+
- *(interpreter)* use `pop_top!` where possible ([#1267](https://github.com/bluealloy/revm/pull/1267))
37+
- add and use EvmContext::take_error ([#1264](https://github.com/bluealloy/revm/pull/1264))
38+
939
## [8.0.0](https://github.com/bluealloy/revm/compare/revm-v7.2.0...revm-v8.0.0) - 2024-04-02
1040

1141
### Added

crates/revm/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords = ["no_std", "ethereum", "evm", "revm"]
66
license = "MIT"
77
name = "revm"
88
repository = "https://github.com/bluealloy/revm"
9-
version = "8.0.0"
9+
version = "9.0.0"
1010
readme = "../../README.md"
1111

1212
[package.metadata.docs.rs]
@@ -23,8 +23,8 @@ all = "warn"
2323

2424
[dependencies]
2525
# revm
26-
revm-interpreter = { path = "../interpreter", version = "4.0.0", default-features = false }
27-
revm-precompile = { path = "../precompile", version = "6.0.0", default-features = false }
26+
revm-interpreter = { path = "../interpreter", version = "5.0.0", default-features = false }
27+
revm-precompile = { path = "../precompile", version = "7.0.0", default-features = false }
2828

2929
# misc
3030
auto_impl = { version = "1.2", default-features = false }

0 commit comments

Comments
 (0)