Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Feb 23, 2024
1 parent d2f382e commit 64f4e81
Show file tree
Hide file tree
Showing 12 changed files with 72 additions and 16 deletions.
10 changes: 5 additions & 5 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 = "6.0.0",default-features=false }
revm = { path = "../../crates/revm", version = "6.1.0",default-features=false }
microbench = "0.5"
alloy-sol-macro = "0.6.3"
alloy-sol-types = "0.6.3"
Expand Down
5 changes: 5 additions & 0 deletions bins/revme/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.2](https://github.com/xhcdpg/revm/compare/revme-v0.2.1...revme-v0.2.2) - 2024-02-23

### Added
- split off serde_json dependency to its own feature ([#1104](https://github.com/xhcdpg/revm/pull/1104))

## [0.2.1](https://github.com/bluealloy/revm/compare/revme-v0.2.0...revme-v0.2.1) - 2024-02-07

### Added
Expand Down
4 changes: 2 additions & 2 deletions bins/revme/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ keywords = ["ethereum", "evm"]
license = "MIT"
repository = "https://github.com/bluealloy/revm"
description = "Rust Ethereum Virtual Machine Executable"
version = "0.2.1"
version = "0.2.2"

[dependencies]
hash-db = "0.15"
hashbrown = "0.14"
indicatif = "0.17"
plain_hasher = "0.2"
revm = { path = "../../crates/revm", version = "6.0.0", default-features = false, features = [
revm = { path = "../../crates/revm", version = "6.1.0", default-features = false, features = [
"ethersdb",
"std",
"serde-json",
Expand Down
14 changes: 14 additions & 0 deletions crates/interpreter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.1.0](https://github.com/xhcdpg/revm/compare/revm-interpreter-v3.0.0...revm-interpreter-v3.1.0) - 2024-02-23

### Added
- bump c-kzg, add portable feature, make it default ([#1106](https://github.com/xhcdpg/revm/pull/1106))

### Fixed
- replace tuple in sstore return with struct ([#1115](https://github.com/xhcdpg/revm/pull/1115))
- *(db)* Set instruction result at outcome insert ([#1117](https://github.com/xhcdpg/revm/pull/1117))

### Other
- adding more test for i256 ([#1090](https://github.com/xhcdpg/revm/pull/1090))
- *(refactor)* Propagate fatal error ([#1116](https://github.com/xhcdpg/revm/pull/1116))
- clippy cleanup ([#1112](https://github.com/xhcdpg/revm/pull/1112))

## [3.0.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v2.1.0...revm-interpreter-v3.0.0) - 2024-02-17

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions crates/interpreter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ keywords = ["no_std", "ethereum", "evm", "revm", "interpreter"]
license = "MIT"
name = "revm-interpreter"
repository = "https://github.com/bluealloy/revm"
version = "3.0.0"
version = "3.1.0"
readme = "../../README.md"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
revm-primitives = { path = "../primitives", version = "2.0.1", default-features = false }
revm-primitives = { path = "../primitives", version = "2.1.0", default-features = false }

# optional
serde = { version = "1.0", default-features = false, features = [
Expand Down
8 changes: 8 additions & 0 deletions crates/precompile/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [4.1.0](https://github.com/xhcdpg/revm/compare/revm-precompile-v4.0.1...revm-precompile-v4.1.0) - 2024-02-23

### Added
- bump c-kzg, add portable feature, make it default ([#1106](https://github.com/xhcdpg/revm/pull/1106))

### Other
- clippy cleanup ([#1112](https://github.com/xhcdpg/revm/pull/1112))

## [4.0.1](https://github.com/bluealloy/revm/compare/revm-precompile-v4.0.0...revm-precompile-v4.0.1) - 2024-02-17

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions crates/precompile/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ keywords = ["no_std", "ethereum", "evm", "revm", "precompiles"]
license = "MIT"
name = "revm-precompile"
repository = "https://github.com/bluealloy/revm"
version = "4.0.1"
version = "4.1.0"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
revm-primitives = { path = "../primitives", version = "2.0.1", default-features = false }
revm-primitives = { path = "../primitives", version = "2.1.0", default-features = false }
bn = { package = "substrate-bn", version = "0.6", default-features = false }
once_cell = { version = "1.19", default-features = false, features = ["alloc"] }
ripemd = { version = "0.1", default-features = false }
Expand Down
8 changes: 8 additions & 0 deletions crates/primitives/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.1.0](https://github.com/xhcdpg/revm/compare/revm-primitives-v2.0.1...revm-primitives-v2.1.0) - 2024-02-23

### Added
- bump c-kzg, add portable feature, make it default ([#1106](https://github.com/xhcdpg/revm/pull/1106))

### Other
- clippy cleanup ([#1112](https://github.com/xhcdpg/revm/pull/1112))

## [2.0.1](https://github.com/bluealloy/revm/compare/revm-primitives-v2.0.0...revm-primitives-v2.0.1) - 2024-02-17

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

# Don't need to run build script outside of this repo
Expand Down
21 changes: 21 additions & 0 deletions crates/revm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [6.1.0](https://github.com/xhcdpg/revm/compare/revm-v6.0.0...revm-v6.1.0) - 2024-02-23

### Added
- bump c-kzg, add portable feature, make it default ([#1106](https://github.com/xhcdpg/revm/pull/1106))
- split off serde_json dependency to its own feature ([#1104](https://github.com/xhcdpg/revm/pull/1104))

### Fixed
- replace tuple in sstore return with struct ([#1115](https://github.com/xhcdpg/revm/pull/1115))
- fix EthersDB deadlock ([#1089](https://github.com/xhcdpg/revm/pull/1089))
- Handle fatal db error on load_account ([#1111](https://github.com/xhcdpg/revm/pull/1111))

### Other
- Ensure `L1Block` is in the cache ([#1121](https://github.com/xhcdpg/revm/pull/1121))
- Fix feature name for generate_block_traces example ([#1120](https://github.com/xhcdpg/revm/pull/1120))
- *(refactor)* Propagate fatal error ([#1116](https://github.com/xhcdpg/revm/pull/1116))
- Revert "fix EthersDB deadlock ([#1089](https://github.com/xhcdpg/revm/pull/1089))" ([#1118](https://github.com/xhcdpg/revm/pull/1118))
- Remove DatabaseRef bound on CacheDB ([#1113](https://github.com/xhcdpg/revm/pull/1113))
- clippy cleanup ([#1112](https://github.com/xhcdpg/revm/pull/1112))
- *(deps)* bump anyhow from 1.0.79 to 1.0.80 ([#1108](https://github.com/xhcdpg/revm/pull/1108))
- improve EIP-3155 implementation ([#1105](https://github.com/xhcdpg/revm/pull/1105))

## [6.0.0](https://github.com/bluealloy/revm/compare/revm-v5.0.0...revm-v6.0.0) - 2024-02-17

### Added
Expand Down
6 changes: 3 additions & 3 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 = "6.0.0"
version = "6.1.0"
readme = "../../README.md"

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

[dependencies]
# revm
revm-interpreter = { path = "../interpreter", version = "3.0.0", default-features = false }
revm-precompile = { path = "../precompile", version = "4.0.1", default-features = false }
revm-interpreter = { path = "../interpreter", version = "3.1.0", default-features = false }
revm-precompile = { path = "../precompile", version = "4.1.0", default-features = false }

# misc
auto_impl = { version = "1.1", default-features = false }
Expand Down

0 comments on commit 64f4e81

Please sign in to comment.