Skip to content

Commit f7148ae

Browse files
chore: release
1 parent 52c517c commit f7148ae

File tree

7 files changed

+23
-7
lines changed

7 files changed

+23
-7
lines changed

Cargo.lock

+2-2
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.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

+1-1
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/precompile/CHANGELOG.md

+5
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+
## [3.0.1](https://github.com/0xethsign/revm/compare/revm-precompile-v3.0.0...revm-precompile-v3.0.1) - 2024-02-10
10+
11+
### Other
12+
- *(revm)* Add helpers to Build Revm with Context ([#1068](https://github.com/0xethsign/revm/pull/1068))
13+
914
## [3.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v2.2.0...revm-precompile-v3.0.0) - 2024-02-07
1015

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

crates/precompile/Cargo.toml

+1-1
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 = "3.0.1"
1010

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

crates/revm/CHANGELOG.md

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

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

crates/revm/Cargo.toml

+2-2
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]
@@ -16,7 +16,7 @@ rustdoc-args = ["--cfg", "docsrs"]
1616
[dependencies]
1717
# revm
1818
revm-interpreter = { path = "../interpreter", version = "2.0.0", default-features = false }
19-
revm-precompile = { path = "../precompile", version = "3.0.0", default-features = false }
19+
revm-precompile = { path = "../precompile", version = "3.0.1", default-features = false }
2020

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

0 commit comments

Comments
 (0)