Skip to content

Commit

Permalink
chore: tag v32 revm v7.1.0 (#1176)
Browse files Browse the repository at this point in the history
  • Loading branch information
rakita authored Mar 8, 2024
1 parent 44398e3 commit fa87d65
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 8 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
Because this is workspace with multi libraries, tags will be simplified, and with this document you can match version of project with git tag.

# v32 tag
date: 08.03.2024

Extends v7.0.0 with more restrictive context precompile.

revm: 7.0.0(yanked) -> 7.1.0 (⚠️ API breaking changes)
revm-interpreter: 3.2.0 -> 3.3.0 (✓ API compatible changes)

# v31 tag
date 08.03.2024

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

revme: 0.2.2 -> 0.3.0 (⚠️ API breaking changes)
revm: 6.1.0 -> 7.0.0 (⚠️ API breaking changes)
revm: 6.1.0 -> 7.0.0(yanked) (⚠️ API breaking changes)
revm-interpreter: 3.1.0 -> 3.2.0 (✓ API compatible changes)
revm-primitives: 2.1.0 -> 3.0.0 (⚠️ API breaking changes)
revm-precompile: 4.1.0 -> 5.0.0 (⚠️ API breaking changes)
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bins/revm-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
bytes = "1.4"
hex = "0.4"
revm = { path = "../../crates/revm", version = "7.0.0",default-features=false }
revm = { path = "../../crates/revm", version = "7.1.0",default-features=false }
microbench = "0.5"
alloy-sol-macro = "0.6.4"
alloy-sol-types = "0.6.4"
Expand Down
2 changes: 1 addition & 1 deletion bins/revme/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ hashbrown = "0.14"
indicatif = "0.17"
microbench = "0.5"
plain_hasher = "0.2"
revm = { path = "../../crates/revm", version = "7.0.0", default-features = false, features = [
revm = { path = "../../crates/revm", version = "7.1.0", default-features = false, features = [
"ethersdb",
"std",
"serde-json",
Expand Down
6 changes: 6 additions & 0 deletions crates/interpreter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.3.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v3.2.0...revm-interpreter-v3.3.0) - 2024-03-08

### Added
- *(interpreter)* OpCode struct constants ([#1173](https://github.com/bluealloy/revm/pull/1173))


## [3.2.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v3.1.0...revm-interpreter-v3.2.0) - 2024-03-08

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/interpreter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ keywords = ["no_std", "ethereum", "evm", "revm", "interpreter"]
license = "MIT"
name = "revm-interpreter"
repository = "https://github.com/bluealloy/revm"
version = "3.2.0"
version = "3.3.0"
readme = "../../README.md"

[package.metadata.docs.rs]
Expand Down
7 changes: 7 additions & 0 deletions crates/revm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [7.1.0](https://github.com/bluealloy/revm/compare/revm-v7.0.0...revm-v8.0.0) - 2024-03-08

### Added
- Restrict ContextPrecompiles only to EvmContext ([#1174](https://github.com/bluealloy/revm/pull/1174))

## [7.0.0](https://github.com/bluealloy/revm/compare/revm-v6.1.0...revm-v7.0.0) - 2024-03-08

This release got yanked and replaced with 7.1.0

### Added
- add insert method on instruction table ([#1167](https://github.com/bluealloy/revm/pull/1167))
- precompile with generic context ([#1155](https://github.com/bluealloy/revm/pull/1155))
Expand Down
4 changes: 2 additions & 2 deletions crates/revm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ keywords = ["no_std", "ethereum", "evm", "revm"]
license = "MIT"
name = "revm"
repository = "https://github.com/bluealloy/revm"
version = "7.0.0"
version = "7.1.0"
readme = "../../README.md"

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

[dependencies]
# revm
revm-interpreter = { path = "../interpreter", version = "3.2.0", default-features = false }
revm-interpreter = { path = "../interpreter", version = "3.3.0", default-features = false }
revm-precompile = { path = "../precompile", version = "5.0.0", default-features = false }

# misc
Expand Down

0 comments on commit fa87d65

Please sign in to comment.