Skip to content

Commit 3108aa7

Browse files
committed
chore: release
Signed-off-by: GitHub Action <[email protected]>
1 parent 14f79e3 commit 3108aa7

File tree

12 files changed

+107
-16
lines changed

12 files changed

+107
-16
lines changed

Cargo.lock

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

bins/revm-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ 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/BigBenlau/revm_ben/compare/revme-v0.4.0...revme-v0.5.0) - 2024-05-02
10+
11+
### Added
12+
- *(revme)* add --keep-going to statetest command ([#1277](https://github.com/BigBenlau/revm_ben/pull/1277))
13+
- EOF (Ethereum Object Format) ([#1143](https://github.com/BigBenlau/revm_ben/pull/1143))
14+
15+
### Fixed
16+
- *(revme)* Print one json outcome in statetest ([#1347](https://github.com/BigBenlau/revm_ben/pull/1347))
17+
- Drops check for .json when testing a single file ([#1301](https://github.com/BigBenlau/revm_ben/pull/1301))
18+
919
## [0.4.0](https://github.com/bluealloy/revm/compare/revme-v0.3.1...revme-v0.4.0) - 2024-04-02
1020

1121
### Added

bins/revme/Cargo.toml

Lines changed: 2 additions & 2 deletions
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

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,35 @@ 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/BigBenlau/revm_ben/compare/revm-interpreter-v4.0.0...revm-interpreter-v5.0.0) - 2024-05-02
10+
11+
### Added
12+
- parse opcodes from strings ([#1358](https://github.com/BigBenlau/revm_ben/pull/1358))
13+
- *(interpreter)* add helpers for spending all gas ([#1360](https://github.com/BigBenlau/revm_ben/pull/1360))
14+
- add helper methods to CallInputs ([#1345](https://github.com/BigBenlau/revm_ben/pull/1345))
15+
- *(revm)* make `FrameOrResult` serializable ([#1282](https://github.com/BigBenlau/revm_ben/pull/1282))
16+
- add flag to force hashbrown usage ([#1284](https://github.com/BigBenlau/revm_ben/pull/1284))
17+
- EOF (Ethereum Object Format) ([#1143](https://github.com/BigBenlau/revm_ben/pull/1143))
18+
- *(interpreter)* derive Eq for InterpreterAction ([#1262](https://github.com/BigBenlau/revm_ben/pull/1262))
19+
- *(interpreter)* remove SPEC generic from gas calculation functions ([#1243](https://github.com/BigBenlau/revm_ben/pull/1243))
20+
- *(interpreter)* test Host object-safety, allow `dyn Host` in instructions ([#1245](https://github.com/BigBenlau/revm_ben/pull/1245))
21+
22+
### Fixed
23+
- return the correct error in resize_memory ([#1359](https://github.com/BigBenlau/revm_ben/pull/1359))
24+
- correct some stack IO ([#1302](https://github.com/BigBenlau/revm_ben/pull/1302))
25+
26+
### Other
27+
- *(interpreter)* rewrite gas accounting for memory expansion ([#1361](https://github.com/BigBenlau/revm_ben/pull/1361))
28+
- remove bounds check in DUP, SWAP/EXCHANGE ([#1346](https://github.com/BigBenlau/revm_ben/pull/1346))
29+
- don't clone bytes in `Bytecode::bytes` ([#1344](https://github.com/BigBenlau/revm_ben/pull/1344))
30+
- shrink OpCodeInfo and add more methods ([#1307](https://github.com/BigBenlau/revm_ben/pull/1307))
31+
- *(interpreter)* rename some macros ([#1304](https://github.com/BigBenlau/revm_ben/pull/1304))
32+
- *(interpreter)* remove EOF branch in CODE{SIZE,COPY} ([#1308](https://github.com/BigBenlau/revm_ben/pull/1308))
33+
- fix some warnings ([#1305](https://github.com/BigBenlau/revm_ben/pull/1305))
34+
- *(interpreter)* rename wrapping_* opcodes ([#1306](https://github.com/BigBenlau/revm_ben/pull/1306))
35+
- Add the modifies_memory macro ([#1270](https://github.com/BigBenlau/revm_ben/pull/1270))
36+
- *(interpreter)* use `pop_top!` where possible ([#1267](https://github.com/BigBenlau/revm_ben/pull/1267))
37+
938
## [4.0.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v3.4.0...revm-interpreter-v4.0.0) - 2024-04-02
1039

1140
### Added

crates/interpreter/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ 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]
1313
all-features = true
1414
rustdoc-args = ["--cfg", "docsrs"]
1515

1616
[dependencies]
17-
revm-primitives = { path = "../primitives", version = "3.1.1", default-features = false }
17+
revm-primitives = { path = "../primitives", version = "4.0.0", default-features = false }
1818

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

crates/precompile/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ 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/BigBenlau/revm_ben/compare/revm-precompile-v6.0.0...revm-precompile-v6.1.0) - 2024-05-02
10+
11+
### Added
12+
- add flag to force hashbrown usage ([#1284](https://github.com/BigBenlau/revm_ben/pull/1284))
13+
- EOF (Ethereum Object Format) ([#1143](https://github.com/BigBenlau/revm_ben/pull/1143))
14+
15+
### Other
16+
- *(deps)* bump aurora-engine-modexp from 1.0.0 to 1.1.0 ([#1339](https://github.com/BigBenlau/revm_ben/pull/1339))
17+
- *(deps)* bump secp256k1 from 0.28.2 to 0.29.0 ([#1260](https://github.com/BigBenlau/revm_ben/pull/1260))
18+
919
## [6.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v5.1.0...revm-precompile-v6.0.0) - 2024-04-02
1020

1121
### Fixed

crates/precompile/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ 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 = "6.1.0"
1010

1111
[package.metadata.docs.rs]
1212
all-features = true
1313
rustdoc-args = ["--cfg", "docsrs"]
1414

1515
[dependencies]
16-
revm-primitives = { path = "../primitives", version = "3.1.1", default-features = false }
16+
revm-primitives = { path = "../primitives", version = "4.0.0", default-features = false }
1717
bn = { package = "substrate-bn", version = "0.6", default-features = false }
1818
once_cell = { version = "1.19", default-features = false, features = ["alloc"] }
1919
ripemd = { version = "0.1", default-features = false }

crates/primitives/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,23 @@ 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/BigBenlau/revm_ben/compare/revm-primitives-v3.1.1...revm-primitives-v4.0.0) - 2024-05-02
10+
11+
### Added
12+
- add `Bytecode::original_bytecode_slice` to match `BytecodeLocked` ([#1286](https://github.com/BigBenlau/revm_ben/pull/1286))
13+
- add flag to force hashbrown usage ([#1284](https://github.com/BigBenlau/revm_ben/pull/1284))
14+
- EOF (Ethereum Object Format) ([#1143](https://github.com/BigBenlau/revm_ben/pull/1143))
15+
- pass rand feature to alloy_primitives ([#1276](https://github.com/BigBenlau/revm_ben/pull/1276))
16+
- *(interpreter)* remove SPEC generic from gas calculation functions ([#1243](https://github.com/BigBenlau/revm_ben/pull/1243))
17+
18+
### Other
19+
- Merge branch 'bluealloy:main' into main
20+
- don't clone bytes in `Bytecode::bytes` ([#1344](https://github.com/BigBenlau/revm_ben/pull/1344))
21+
- shrink OpCodeInfo and add more methods ([#1307](https://github.com/BigBenlau/revm_ben/pull/1307))
22+
- Implement `with_chain_id` for `CfgEnv` ([#1327](https://github.com/BigBenlau/revm_ben/pull/1327))
23+
- *(interpreter)* remove EOF branch in CODE{SIZE,COPY} ([#1308](https://github.com/BigBenlau/revm_ben/pull/1308))
24+
- Update documentation ([#1275](https://github.com/BigBenlau/revm_ben/pull/1275))
25+
926
## [3.1.1](https://github.com/bluealloy/revm/compare/revm-primitives-v3.1.0...revm-primitives-v3.1.1) - 2024-04-02
1027

1128
### Fixed

crates/primitives/Cargo.toml

Lines changed: 1 addition & 1 deletion
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
# Don't need to run build script outside of this repo

0 commit comments

Comments
 (0)