Skip to content

Commit 9744b6f

Browse files
rakitafubuloubu
authored andcommitted
chore: tag v32 revm v7.1.0 (bluealloy#1176)
1 parent e2d60d5 commit 9744b6f

File tree

8 files changed

+29
-8
lines changed

8 files changed

+29
-8
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
Because this is workspace with multi libraries, tags will be simplified, and with this document you can match version of project with git tag.
22

3+
# v32 tag
4+
date: 08.03.2024
5+
6+
Extends v7.0.0 with more restrictive context precompile.
7+
8+
revm: 7.0.0(yanked) -> 7.1.0 (⚠️ API breaking changes)
9+
revm-interpreter: 3.2.0 -> 3.3.0 (✓ API compatible changes)
10+
311
# v31 tag
412
date 08.03.2024
513

614
Stateful and context aware precompiles types added. Few improvements and fixes.
715

816
revme: 0.2.2 -> 0.3.0 (⚠️ API breaking changes)
9-
revm: 6.1.0 -> 7.0.0 (⚠️ API breaking changes)
17+
revm: 6.1.0 -> 7.0.0(yanked) (⚠️ API breaking changes)
1018
revm-interpreter: 3.1.0 -> 3.2.0 (✓ API compatible changes)
1119
revm-primitives: 2.1.0 -> 3.0.0 (⚠️ API breaking changes)
1220
revm-precompile: 4.1.0 -> 5.0.0 (⚠️ API breaking changes)

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 = "7.0.0",default-features=false }
10+
revm = { path = "../../crates/revm", version = "7.1.0",default-features=false }
1111
microbench = "0.5"
1212
alloy-sol-macro = "0.6.4"
1313
alloy-sol-types = "0.6.4"

bins/revme/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -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.0.0", default-features = false, features = [
18+
revm = { path = "../../crates/revm", version = "7.1.0", default-features = false, features = [
1919
"ethersdb",
2020
"std",
2121
"serde-json",

crates/interpreter/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [3.3.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v3.2.0...revm-interpreter-v3.3.0) - 2024-03-08
10+
11+
### Added
12+
- *(interpreter)* OpCode struct constants ([#1173](https://github.com/bluealloy/revm/pull/1173))
13+
14+
915
## [3.2.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v3.1.0...revm-interpreter-v3.2.0) - 2024-03-08
1016

1117
### Added

crates/interpreter/Cargo.toml

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

1212
[package.metadata.docs.rs]

crates/revm/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [7.1.0](https://github.com/bluealloy/revm/compare/revm-v7.0.0...revm-v8.0.0) - 2024-03-08
10+
11+
### Added
12+
- Restrict ContextPrecompiles only to EvmContext ([#1174](https://github.com/bluealloy/revm/pull/1174))
13+
914
## [7.0.0](https://github.com/bluealloy/revm/compare/revm-v6.1.0...revm-v7.0.0) - 2024-03-08
1015

16+
This release got yanked and replaced with 7.1.0
17+
1118
### Added
1219
- add insert method on instruction table ([#1167](https://github.com/bluealloy/revm/pull/1167))
1320
- precompile with generic context ([#1155](https://github.com/bluealloy/revm/pull/1155))

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

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

1616
[dependencies]
1717
# revm
18-
revm-interpreter = { path = "../interpreter", version = "3.2.0", default-features = false }
18+
revm-interpreter = { path = "../interpreter", version = "3.3.0", default-features = false }
1919
revm-precompile = { path = "../precompile", version = "5.0.0", default-features = false }
2020

2121
# misc

0 commit comments

Comments
 (0)