Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.1.0",default-features=false }
revm = { path = "../../crates/revm", version = "7.0.0",default-features=false }
microbench = "0.5"
alloy-sol-macro = "0.6.4"
alloy-sol-types = "0.6.4"
Expand Down
9 changes: 9 additions & 0 deletions bins/revme/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]

## [0.3.0](https://github.com/novice-stack/revm/compare/revme-v0.2.2...revme-v0.3.0) - 2024-03-08

### Added
- use `impl` instead of `dyn` in `GetInspector` ([#1157](https://github.com/novice-stack/revm/pull/1157))
- add evm script ([#1039](https://github.com/novice-stack/revm/pull/1039))

### Other
- *(deps)* bump walkdir from 2.4.0 to 2.5.0 ([#1149](https://github.com/novice-stack/revm/pull/1149))

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

### 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.2.2"
version = "0.3.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 = "6.1.0", default-features = false, features = [
revm = { path = "../../crates/revm", version = "7.0.0", default-features = false, features = [
"ethersdb",
"std",
"serde-json",
Expand Down
10 changes: 10 additions & 0 deletions crates/interpreter/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]

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

### Added
- use `impl` instead of `dyn` in `GetInspector` ([#1157](https://github.com/novice-stack/revm/pull/1157))

### Other
- *(interpreter)* use already-computed sign in SAR ([#1147](https://github.com/novice-stack/revm/pull/1147))
- *(interpreter)* factor out jump logic ([#1146](https://github.com/novice-stack/revm/pull/1146))
- *(interpreter)* evaluate instruction table constructor at compile time ([#1140](https://github.com/novice-stack/revm/pull/1140))

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

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

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

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

# optional
serde = { version = "1.0", default-features = false, features = [
Expand Down
6 changes: 6 additions & 0 deletions crates/precompile/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]

## [5.0.0](https://github.com/novice-stack/revm/compare/revm-precompile-v4.1.0...revm-precompile-v5.0.0) - 2024-03-08

### Added
- precompile with generic context ([#1155](https://github.com/novice-stack/revm/pull/1155))
- Add boxed precompile trait ([#1131](https://github.com/novice-stack/revm/pull/1131))

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

### Added
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.1.0"
version = "5.0.0"

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

[dependencies]
revm-primitives = { path = "../primitives", version = "2.1.0", default-features = false }
revm-primitives = { path = "../primitives", version = "3.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
13 changes: 13 additions & 0 deletions crates/primitives/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.0.0](https://github.com/novice-stack/revm/compare/revm-primitives-v2.1.0...revm-primitives-v3.0.0) - 2024-03-08

### Added
- implement DatabaseCommit for DatabaseComponents ([#1163](https://github.com/novice-stack/revm/pull/1163))
- add PrecompileError::Other ([#1165](https://github.com/novice-stack/revm/pull/1165))
- use `impl` instead of `dyn` in `GetInspector` ([#1157](https://github.com/novice-stack/revm/pull/1157))
- Add boxed precompile trait ([#1131](https://github.com/novice-stack/revm/pull/1131))

### Other
- *(interpreter)* evaluate instruction table constructor at compile time ([#1140](https://github.com/novice-stack/revm/pull/1140))
- *(deps)* bump auto_impl from 1.1.2 to 1.2.0 ([#1132](https://github.com/novice-stack/revm/pull/1132))
- add helper function for spec id ([#1130](https://github.com/novice-stack/revm/pull/1130))

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

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

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

## [Unreleased]

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

### Added
- precompile with generic context ([#1155](https://github.com/novice-stack/revm/pull/1155))
- use `impl` instead of `dyn` in `GetInspector` ([#1157](https://github.com/novice-stack/revm/pull/1157))
- add more JournaledState methods to EvmContext ([#1158](https://github.com/novice-stack/revm/pull/1158))
- add example for using a database by reference ([#1150](https://github.com/novice-stack/revm/pull/1150))
- Add boxed precompile trait ([#1131](https://github.com/novice-stack/revm/pull/1131))
- add with_handler method to EvmBuilder ([#1124](https://github.com/novice-stack/revm/pull/1124))

### Fixed
- gas cost calculation ([#1166](https://github.com/novice-stack/revm/pull/1166))
- reset tstorage on finalize ([#1168](https://github.com/novice-stack/revm/pull/1168))
- make `feature = "optional_gas_refund"` work ([#1134](https://github.com/novice-stack/revm/pull/1134))

### Other
- *(deps)* bump ethers-contract from 2.0.13 to 2.0.14 ([#1161](https://github.com/novice-stack/revm/pull/1161))
- *(interpreter)* evaluate instruction table constructor at compile time ([#1140](https://github.com/novice-stack/revm/pull/1140))
- remove clone for context in handler_register.rs ([#1138](https://github.com/novice-stack/revm/pull/1138))
- Check runtime dynamically ([#1135](https://github.com/novice-stack/revm/pull/1135))
- *(deps)* bump auto_impl from 1.1.2 to 1.2.0 ([#1132](https://github.com/novice-stack/revm/pull/1132))
- Add `db` and `db_mut` to evm ([#1133](https://github.com/novice-stack/revm/pull/1133))
- add ToString for no_std add exports some types in no_std ([#1128](https://github.com/novice-stack/revm/pull/1128))
- Add `clone` method to `ContextWithHandlerCfg` ([#1127](https://github.com/novice-stack/revm/pull/1127))
- remove unused EvmInstructionTables type alias ([#1123](https://github.com/novice-stack/revm/pull/1123))

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

### 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.1.0"
version = "7.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 = "3.1.0", default-features = false }
revm-precompile = { path = "../precompile", version = "4.1.0", default-features = false }
revm-interpreter = { path = "../interpreter", version = "3.2.0", default-features = false }
revm-precompile = { path = "../precompile", version = "5.0.0", default-features = false }

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