Skip to content

Commit 76e7c88

Browse files
chore: release tag v30 revm v6.1.0 (#1100)
Signed-off-by: GitHub Action <[email protected]> Co-authored-by: GitHub Action <[email protected]>
1 parent d2f382e commit 76e7c88

File tree

12 files changed

+72
-16
lines changed

12 files changed

+72
-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.4"
99
hex = "0.4"
10-
revm = { path = "../../crates/revm", version = "6.0.0",default-features=false }
10+
revm = { path = "../../crates/revm", version = "6.1.0",default-features=false }
1111
microbench = "0.5"
1212
alloy-sol-macro = "0.6.3"
1313
alloy-sol-types = "0.6.3"

bins/revme/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.2.2](https://github.com/bluealloy/revm/compare/revme-v0.2.1...revme-v0.2.2) - 2024-02-22
10+
11+
### Added
12+
- split off serde_json dependency to its own feature ([#1104](https://github.com/bluealloy/revm/pull/1104))
13+
914
## [0.2.1](https://github.com/bluealloy/revm/compare/revme-v0.2.0...revme-v0.2.1) - 2024-02-07
1015

1116
### Added

bins/revme/Cargo.toml

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

1111
[dependencies]
1212
hash-db = "0.15"
1313
hashbrown = "0.14"
1414
indicatif = "0.17"
1515
plain_hasher = "0.2"
16-
revm = { path = "../../crates/revm", version = "6.0.0", default-features = false, features = [
16+
revm = { path = "../../crates/revm", version = "6.1.0", default-features = false, features = [
1717
"ethersdb",
1818
"std",
1919
"serde-json",

crates/interpreter/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
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+
## [3.1.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v3.0.0...revm-interpreter-v3.1.0) - 2024-02-22
10+
11+
### Added
12+
- bump c-kzg, add portable feature, make it default ([#1106](https://github.com/bluealloy/revm/pull/1106))
13+
14+
### Fixed
15+
- replace tuple in sstore return with struct ([#1115](https://github.com/bluealloy/revm/pull/1115))
16+
- *(db)* Set instruction result at outcome insert ([#1117](https://github.com/bluealloy/revm/pull/1117))
17+
18+
### Other
19+
- adding more test for i256 ([#1090](https://github.com/bluealloy/revm/pull/1090))
20+
- *(refactor)* Propagate fatal error ([#1116](https://github.com/bluealloy/revm/pull/1116))
21+
- clippy cleanup ([#1112](https://github.com/bluealloy/revm/pull/1112))
22+
923
## [3.0.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v2.1.0...revm-interpreter-v3.0.0) - 2024-02-17
1024

1125
### Fixed

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 = "3.0.0"
9+
version = "3.1.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 = "2.0.1", default-features = false }
17+
revm-primitives = { path = "../primitives", version = "2.1.0", default-features = false }
1818

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

crates/precompile/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
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+
## [4.1.0](https://github.com/bluealloy/revm/compare/revm-precompile-v4.0.1...revm-precompile-v4.1.0) - 2024-02-22
10+
11+
### Added
12+
- bump c-kzg, add portable feature, make it default ([#1106](https://github.com/bluealloy/revm/pull/1106))
13+
14+
### Other
15+
- clippy cleanup ([#1112](https://github.com/bluealloy/revm/pull/1112))
16+
917
## [4.0.1](https://github.com/bluealloy/revm/compare/revm-precompile-v4.0.0...revm-precompile-v4.0.1) - 2024-02-17
1018

1119
### 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 = "4.0.1"
9+
version = "4.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 = "2.0.1", default-features = false }
16+
revm-primitives = { path = "../primitives", version = "2.1.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: 8 additions & 0 deletions
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+
## [2.1.0](https://github.com/bluealloy/revm/compare/revm-primitives-v2.0.1...revm-primitives-v2.1.0) - 2024-02-22
10+
11+
### Added
12+
- bump c-kzg, add portable feature, make it default ([#1106](https://github.com/bluealloy/revm/pull/1106))
13+
14+
### Other
15+
- clippy cleanup ([#1112](https://github.com/bluealloy/revm/pull/1112))
16+
917
## [2.0.1](https://github.com/bluealloy/revm/compare/revm-primitives-v2.0.0...revm-primitives-v2.0.1) - 2024-02-17
1018

1119
### 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 = "2.0.1"
9+
version = "2.1.0"
1010
readme = "../../README.md"
1111

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

0 commit comments

Comments
 (0)