Skip to content

Commit e85faeb

Browse files
chore: release (#1067)
Signed-off-by: GitHub Action <action@github.com> Co-authored-by: GitHub Action <action@github.com>
1 parent ad415e5 commit e85faeb

File tree

9 files changed

+36
-10
lines changed

9 files changed

+36
-10
lines changed

Cargo.lock

Lines changed: 3 additions & 3 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 = "4.0.0",default-features=false }
10+
revm = { path = "../../crates/revm", version = "5.0.0",default-features=false }
1111
microbench = "0.5"
1212
alloy-sol-macro = "0.6.2"
1313
alloy-sol-types = "0.6.2"

bins/revme/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ hash-db = "0.15"
1414
hashbrown = "0.14"
1515
indicatif = "0.17"
1616
plain_hasher = "0.2"
17-
revm = { path = "../../crates/revm", version = "4.0.0", default-features = false, features = [
17+
revm = { path = "../../crates/revm", version = "5.0.0", default-features = false, features = [
1818
"ethersdb",
1919
"std",
2020
"serde",

crates/interpreter/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+
## [2.1.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v2.0.0...revm-interpreter-v2.1.0) - 2024-02-12
10+
11+
### Added
12+
- *(interpreter)* relax `make_boxed_instruction_table::FN` to `FnMut` ([#1076](https://github.com/bluealloy/revm/pull/1076))
13+
914
## [2.0.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v1.3.0...revm-interpreter-v2.0.0) - 2024-02-07
1015

1116
Iterpreter will not be called in recursive calls but would return Action ( CALL/CREATE) that will be executed by the main loop.

crates/interpreter/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", "interpreter"]
66
license = "MIT"
77
name = "revm-interpreter"
88
repository = "https://github.com/bluealloy/revm"
9-
version = "2.0.0"
9+
version = "2.1.0"
1010
readme = "../../README.md"
1111

1212
[package.metadata.docs.rs]

crates/precompile/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
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+
## [4.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v3.0.0...revm-precompile-v4.0.0) - 2024-02-12
10+
11+
### Other
12+
- *(precompile)* don't allocate if padding is not needed ([#1075](https://github.com/bluealloy/revm/pull/1075))
13+
- *(precompile)* simplify bn128 precompile implementations ([#1074](https://github.com/bluealloy/revm/pull/1074))
14+
- *(precompile)* make use of padding utilities, simplify secp256k1 ([#1073](https://github.com/bluealloy/revm/pull/1073))
15+
- precompile bn128 copy ([#1071](https://github.com/bluealloy/revm/pull/1071))
16+
- *(revm)* Add helpers to Build Revm with Context ([#1068](https://github.com/bluealloy/revm/pull/1068))
17+
918
## [3.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v2.2.0...revm-precompile-v3.0.0) - 2024-02-07
1019

1120
Precompiles are refactored from list to HashMap, this allows adding arbitrary precompiles to the list.

crates/precompile/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", "precompiles"]
66
license = "MIT"
77
name = "revm-precompile"
88
repository = "https://github.com/bluealloy/revm"
9-
version = "3.0.0"
9+
version = "4.0.0"
1010

1111
[package.metadata.docs.rs]
1212
all-features = true

crates/revm/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ 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-v4.0.0...revm-v5.0.0) - 2024-02-12
10+
11+
### Fixed
12+
- properly set context env ([#1070](https://github.com/bluealloy/revm/pull/1070))
13+
- typo on internal append_handle_register methods ([#1069](https://github.com/bluealloy/revm/pull/1069))
14+
- *(op)* skip validation on deposit tx ([#1065](https://github.com/bluealloy/revm/pull/1065))
15+
16+
### Other
17+
- *(precompile)* make use of padding utilities, simplify secp256k1 ([#1073](https://github.com/bluealloy/revm/pull/1073))
18+
- *(revm)* Add helpers to Build Revm with Context ([#1068](https://github.com/bluealloy/revm/pull/1068))
19+
- *(revme)* statetests new format and return error ([#1066](https://github.com/bluealloy/revm/pull/1066))
20+
921
## [4.0.0](https://github.com/bluealloy/revm/compare/revm-v3.5.0...revm-v4.0.0) - 2024-02-07
1022

1123
Refactored the logic inside Handler and added EvmBuilder that allows overwriting the default behavior.

crates/revm/Cargo.toml

Lines changed: 3 additions & 3 deletions
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 = "4.0.0"
9+
version = "5.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 = "2.0.0", default-features = false }
19-
revm-precompile = { path = "../precompile", version = "3.0.0", default-features = false }
18+
revm-interpreter = { path = "../interpreter", version = "2.1.0", default-features = false }
19+
revm-precompile = { path = "../precompile", version = "4.0.0", default-features = false }
2020

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

0 commit comments

Comments
 (0)