Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub Action <action@github.com>
  • Loading branch information
actions-user committed Apr 23, 2024
1 parent 1ca3d39 commit a76a666
Show file tree
Hide file tree
Showing 12 changed files with 89 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.6"
hex = "0.4"
revm = { path = "../../crates/revm", version = "8.0.0", default-features=false }
revm = { path = "../../crates/revm", version = "9.0.0", default-features=false }
microbench = "0.5"
alloy-sol-macro = "0.7.0"
alloy-sol-types = "0.7.0"
Expand Down
10 changes: 10 additions & 0 deletions bins/revme/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.0](https://github.com/receivingpotman/revm/compare/revme-v0.4.0...revme-v0.5.0) - 2024-04-23

### Added
- *(revme)* add --keep-going to statetest command ([#1277](https://github.com/receivingpotman/revm/pull/1277))
- EOF (Ethereum Object Format) ([#1143](https://github.com/receivingpotman/revm/pull/1143))

### Fixed
- *(revme)* Print one json outcome in statetest ([#1347](https://github.com/receivingpotman/revm/pull/1347))
- Drops check for .json when testing a single file ([#1301](https://github.com/receivingpotman/revm/pull/1301))

## [0.4.0](https://github.com/bluealloy/revm/compare/revme-v0.3.1...revme-v0.4.0) - 2024-04-02

### 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,7 +6,7 @@ keywords = ["ethereum", "evm"]
license = "MIT"
repository = "https://github.com/bluealloy/revm"
description = "Rust Ethereum Virtual Machine Executable"
version = "0.4.0"
version = "0.5.0"

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

## [Unreleased]

## [5.0.0](https://github.com/receivingpotman/revm/compare/revm-interpreter-v4.0.0...revm-interpreter-v5.0.0) - 2024-04-23

### Added
- add helper methods to CallInputs ([#1345](https://github.com/receivingpotman/revm/pull/1345))
- *(revm)* make `FrameOrResult` serializable ([#1282](https://github.com/receivingpotman/revm/pull/1282))
- add flag to force hashbrown usage ([#1284](https://github.com/receivingpotman/revm/pull/1284))
- EOF (Ethereum Object Format) ([#1143](https://github.com/receivingpotman/revm/pull/1143))
- *(interpreter)* derive Eq for InterpreterAction ([#1262](https://github.com/receivingpotman/revm/pull/1262))
- *(interpreter)* remove SPEC generic from gas calculation functions ([#1243](https://github.com/receivingpotman/revm/pull/1243))
- *(interpreter)* test Host object-safety, allow `dyn Host` in instructions ([#1245](https://github.com/receivingpotman/revm/pull/1245))

### Fixed
- correct some stack IO ([#1302](https://github.com/receivingpotman/revm/pull/1302))

### Other
- *(interpreter)* rename some macros ([#1304](https://github.com/receivingpotman/revm/pull/1304))
- *(interpreter)* remove EOF branch in CODE{SIZE,COPY} ([#1308](https://github.com/receivingpotman/revm/pull/1308))
- fix some warnings ([#1305](https://github.com/receivingpotman/revm/pull/1305))
- *(interpreter)* rename wrapping_* opcodes ([#1306](https://github.com/receivingpotman/revm/pull/1306))
- Add the modifies_memory macro ([#1270](https://github.com/receivingpotman/revm/pull/1270))
- *(interpreter)* use `pop_top!` where possible ([#1267](https://github.com/receivingpotman/revm/pull/1267))

## [4.0.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v3.4.0...revm-interpreter-v4.0.0) - 2024-04-02

### Added
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 = "4.0.0"
version = "5.0.0"
readme = "../../README.md"

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

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

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

## [Unreleased]

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

### Added
- add flag to force hashbrown usage ([#1284](https://github.com/receivingpotman/revm/pull/1284))
- EOF (Ethereum Object Format) ([#1143](https://github.com/receivingpotman/revm/pull/1143))

### Other
- *(deps)* bump secp256k1 from 0.28.2 to 0.29.0 ([#1260](https://github.com/receivingpotman/revm/pull/1260))

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

### 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 = "6.0.0"
version = "6.1.0"

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

[dependencies]
revm-primitives = { path = "../primitives", version = "3.1.1", default-features = false }
revm-primitives = { path = "../primitives", version = "4.0.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
14 changes: 14 additions & 0 deletions crates/primitives/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]

## [4.0.0](https://github.com/receivingpotman/revm/compare/revm-primitives-v3.1.1...revm-primitives-v4.0.0) - 2024-04-23

### Added
- add `Bytecode::original_bytecode_slice` to match `BytecodeLocked` ([#1286](https://github.com/receivingpotman/revm/pull/1286))
- add flag to force hashbrown usage ([#1284](https://github.com/receivingpotman/revm/pull/1284))
- EOF (Ethereum Object Format) ([#1143](https://github.com/receivingpotman/revm/pull/1143))
- pass rand feature to alloy_primitives ([#1276](https://github.com/receivingpotman/revm/pull/1276))
- *(interpreter)* remove SPEC generic from gas calculation functions ([#1243](https://github.com/receivingpotman/revm/pull/1243))

### Other
- Implement `with_chain_id` for `CfgEnv` ([#1327](https://github.com/receivingpotman/revm/pull/1327))
- *(interpreter)* remove EOF branch in CODE{SIZE,COPY} ([#1308](https://github.com/receivingpotman/revm/pull/1308))
- Update documentation ([#1275](https://github.com/receivingpotman/revm/pull/1275))

## [3.1.1](https://github.com/bluealloy/revm/compare/revm-primitives-v3.1.0...revm-primitives-v3.1.1) - 2024-04-02

### 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 = "3.1.1"
version = "4.0.0"
readme = "../../README.md"

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

## [Unreleased]

## [9.0.0](https://github.com/receivingpotman/revm/compare/revm-v8.0.0...revm-v9.0.0) - 2024-04-23

### Added
- add helper methods to CallInputs ([#1345](https://github.com/receivingpotman/revm/pull/1345))
- *(revm)* make `FrameOrResult` serializable ([#1282](https://github.com/receivingpotman/revm/pull/1282))
- add flag to force hashbrown usage ([#1284](https://github.com/receivingpotman/revm/pull/1284))
- EOF (Ethereum Object Format) ([#1143](https://github.com/receivingpotman/revm/pull/1143))
- *(`db`)* Introduce `alloydb` ([#1257](https://github.com/receivingpotman/revm/pull/1257))
- *(interpreter)* remove SPEC generic from gas calculation functions ([#1243](https://github.com/receivingpotman/revm/pull/1243))
- *(interpreter)* test Host object-safety, allow `dyn Host` in instructions ([#1245](https://github.com/receivingpotman/revm/pull/1245))

### Other
- *(deps)* bump anyhow from 1.0.81 to 1.0.82 ([#1293](https://github.com/receivingpotman/revm/pull/1293))
- fix some warnings ([#1305](https://github.com/receivingpotman/revm/pull/1305))
- Update documentation ([#1275](https://github.com/receivingpotman/revm/pull/1275))
- *(interpreter)* use `pop_top!` where possible ([#1267](https://github.com/receivingpotman/revm/pull/1267))
- add and use EvmContext::take_error ([#1264](https://github.com/receivingpotman/revm/pull/1264))

## [8.0.0](https://github.com/bluealloy/revm/compare/revm-v7.2.0...revm-v8.0.0) - 2024-04-02

### 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 = "8.0.0"
version = "9.0.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 = "4.0.0", default-features = false }
revm-precompile = { path = "../precompile", version = "6.0.0", default-features = false }
revm-interpreter = { path = "../interpreter", version = "5.0.0", default-features = false }
revm-precompile = { path = "../precompile", version = "6.1.0", default-features = false }

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

0 comments on commit a76a666

Please sign in to comment.