Skip to content

Commit 4a8c0bf

Browse files
chore: release (bluealloy#1231)
Signed-off-by: GitHub Action <[email protected]> Co-authored-by: GitHub Action <[email protected]>
1 parent 52f1f01 commit 4a8c0bf

File tree

12 files changed

+75
-16
lines changed

12 files changed

+75
-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 = "7.2.0",default-features=false }
10+
revm = { path = "../../crates/revm", version = "8.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

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

77
## [Unreleased]
88

9+
## [0.4.0](https://github.com/bluealloy/revm/compare/revme-v0.3.1...revme-v0.4.0) - 2024-04-02
10+
11+
### Added
12+
- [**breaking**] TracerEip3155 optionally traces memory ([#1234](https://github.com/bluealloy/revm/pull/1234))
13+
14+
### Other
15+
- use uint macro & fix various small things ([#1253](https://github.com/bluealloy/revm/pull/1253))
16+
917
## [0.3.1](https://github.com/bluealloy/revm/compare/revme-v0.3.0...revme-v0.3.1) - 2024-03-19
1018

1119
### Other

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.3.1"
9+
version = "0.4.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 = "7.2.0", default-features = false, features = [
18+
revm = { path = "../../crates/revm", version = "8.0.0", default-features = false, features = [
1919
"ethersdb",
2020
"std",
2121
"serde-json",

crates/interpreter/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@ 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-interpreter-v3.4.0...revm-interpreter-v4.0.0) - 2024-04-02
10+
11+
### Added
12+
- add tests for shift instructions ([#1254](https://github.com/bluealloy/revm/pull/1254))
13+
- derive serde for OpCode, improve implementations ([#1215](https://github.com/bluealloy/revm/pull/1215))
14+
- *(interpreter)* expose mutable access methods on stack and memory ([#1219](https://github.com/bluealloy/revm/pull/1219))
15+
16+
### Other
17+
- use uint macro & fix various small things ([#1253](https://github.com/bluealloy/revm/pull/1253))
18+
- move div by zero check from smod to i256_mod ([#1248](https://github.com/bluealloy/revm/pull/1248))
19+
- *(interpreter)* unbox contract field ([#1228](https://github.com/bluealloy/revm/pull/1228))
20+
- *(interpreter)* keep track of remaining gas rather than spent ([#1221](https://github.com/bluealloy/revm/pull/1221))
21+
- *(interpreter)* don't run signextend with 31 too ([#1222](https://github.com/bluealloy/revm/pull/1222))
22+
923
## [3.4.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v3.3.0...revm-interpreter-v3.4.0) - 2024-03-19
1024

1125
### Added

crates/interpreter/Cargo.toml

+2-2
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 = "3.4.0"
9+
version = "4.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.0", default-features = false }
17+
revm-primitives = { path = "../primitives", version = "3.1.1", default-features = false }
1818

1919
# optional
2020
serde = { version = "1.0", default-features = false, features = [

crates/precompile/CHANGELOG.md

+10
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.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v5.1.0...revm-precompile-v6.0.0) - 2024-04-02
10+
11+
### Fixed
12+
- update/enable bn128 tests ([#1242](https://github.com/bluealloy/revm/pull/1242))
13+
- use correct bn128 mul input length ([#1238](https://github.com/bluealloy/revm/pull/1238))
14+
- use correct rand package for thread_rng ([#1233](https://github.com/bluealloy/revm/pull/1233))
15+
16+
### Other
17+
- remove unnecessary call to into_u256() for bn128 add ([#1239](https://github.com/bluealloy/revm/pull/1239))
18+
919
## [5.1.0](https://github.com/bluealloy/revm/compare/revm-precompile-v5.0.0...revm-precompile-v5.1.0) - 2024-03-19
1020

1121
### Added

crates/precompile/Cargo.toml

+2-2
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 = "5.1.0"
9+
version = "6.0.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.0", default-features = false }
16+
revm-primitives = { path = "../primitives", version = "3.1.1", 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

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

77
## [Unreleased]
88

9+
## [3.1.1](https://github.com/bluealloy/revm/compare/revm-primitives-v3.1.0...revm-primitives-v3.1.1) - 2024-04-02
10+
11+
### Fixed
12+
- fix eip3155 summary gas_used bug and add fork name ([#1216](https://github.com/bluealloy/revm/pull/1216))
13+
14+
### Other
15+
- use uint macro & fix various small things ([#1253](https://github.com/bluealloy/revm/pull/1253))
16+
- *(deps)* bump alloy 0.7.0 ([#1250](https://github.com/bluealloy/revm/pull/1250))
17+
918
## [3.1.0](https://github.com/bluealloy/revm/compare/revm-primitives-v3.0.0...revm-primitives-v3.1.0) - 2024-03-19
1019

1120
### Added

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.0"
9+
version = "3.1.1"
1010
readme = "../../README.md"
1111

1212
# Don't need to run build script outside of this repo

crates/revm/CHANGELOG.md

+18
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+
## [8.0.0](https://github.com/bluealloy/revm/compare/revm-v7.2.0...revm-v8.0.0) - 2024-04-02
10+
11+
### Added
12+
- [**breaking**] TracerEip3155 optionally traces memory ([#1234](https://github.com/bluealloy/revm/pull/1234))
13+
14+
### Fixed
15+
- *(TracerEip3155)* clear Inspector data after transaction. ([#1230](https://github.com/bluealloy/revm/pull/1230))
16+
- *(GasInspector)* calculate correct remaining gas after call return ([#1236](https://github.com/bluealloy/revm/pull/1236))
17+
- fix eip3155 summary gas_used bug and add fork name ([#1216](https://github.com/bluealloy/revm/pull/1216))
18+
19+
### Other
20+
- use uint macro & fix various small things ([#1253](https://github.com/bluealloy/revm/pull/1253))
21+
- *(deps)* bump tokio from 1.36.0 to 1.37.0 ([#1244](https://github.com/bluealloy/revm/pull/1244))
22+
- *(interpreter)* unbox contract field ([#1228](https://github.com/bluealloy/revm/pull/1228))
23+
- *(primitives)* kzg intro ([#1209](https://github.com/bluealloy/revm/pull/1209))
24+
- *(interpreter)* keep track of remaining gas rather than spent ([#1221](https://github.com/bluealloy/revm/pull/1221))
25+
- Improve `EthersDB` ([#1208](https://github.com/bluealloy/revm/pull/1208))
26+
927
## [7.2.0](https://github.com/bluealloy/revm/compare/revm-v7.1.0...revm-v7.2.0) - 2024-03-19
1028

1129
### 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 = "7.2.0"
9+
version = "8.0.0"
1010
readme = "../../README.md"
1111

1212
[package.metadata.docs.rs]
@@ -15,8 +15,8 @@ rustdoc-args = ["--cfg", "docsrs"]
1515

1616
[dependencies]
1717
# revm
18-
revm-interpreter = { path = "../interpreter", version = "3.4.0", default-features = false }
19-
revm-precompile = { path = "../precompile", version = "5.1.0", default-features = false }
18+
revm-interpreter = { path = "../interpreter", version = "4.0.0", default-features = false }
19+
revm-precompile = { path = "../precompile", version = "6.0.0", default-features = false }
2020

2121
# misc
2222
auto_impl = { version = "1.2", default-features = false }

0 commit comments

Comments
 (0)