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 Feb 12, 2024
1 parent ee62866 commit c699172
Show file tree
Hide file tree
Showing 11 changed files with 38 additions and 14 deletions.
8 changes: 4 additions & 4 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
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
bytes = "1.4"
hex = "0.4"
revm = { path = "../../crates/revm", version = "5.0.0",default-features=false }
revm = { path = "../../crates/revm", version = "6.0.0",default-features=false }
microbench = "0.5"
alloy-sol-macro = "0.6.2"
alloy-sol-types = "0.6.2"
Expand Down
2 changes: 1 addition & 1 deletion bins/revme/Cargo.toml
Expand Up @@ -14,7 +14,7 @@ hash-db = "0.15"
hashbrown = "0.14"
indicatif = "0.17"
plain_hasher = "0.2"
revm = { path = "../../crates/revm", version = "5.0.0", default-features = false, features = [
revm = { path = "../../crates/revm", version = "6.0.0", default-features = false, features = [
"ethersdb",
"std",
"serde",
Expand Down
6 changes: 6 additions & 0 deletions crates/interpreter/CHANGELOG.md
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

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

### Other
- Add memory offset ([#1032](https://github.com/bluealloy/revm/pull/1032))
- license date and revm docs ([#1080](https://github.com/bluealloy/revm/pull/1080))

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

### Added
Expand Down
4 changes: 2 additions & 2 deletions crates/interpreter/Cargo.toml
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 = "2.1.0"
version = "3.0.0"
readme = "../../README.md"

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

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

# optional
serde = { version = "1.0", default-features = false, features = ["derive", "rc"], optional = true }
Expand Down
5 changes: 5 additions & 0 deletions crates/precompile/CHANGELOG.md
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

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

### Other
- license date and revm docs ([#1080](https://github.com/bluealloy/revm/pull/1080))

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

### Other
Expand Down
4 changes: 2 additions & 2 deletions crates/precompile/Cargo.toml
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.0"
version = "4.0.1"

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

[dependencies]
revm-primitives = { path = "../primitives", version = "2.0.0", default-features = false }
revm-primitives = { path = "../primitives", version = "2.0.1", 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
5 changes: 5 additions & 0 deletions crates/primitives/CHANGELOG.md
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

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

### Other
- license date and revm docs ([#1080](https://github.com/bluealloy/revm/pull/1080))

## [2.0.0](https://github.com/bluealloy/revm/compare/revm-primitives-v1.3.0...revm-primitives-v2.0.0) - 2024-02-07

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/primitives/Cargo.toml
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.0"
version = "2.0.1"
readme = "../../README.md"

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

## [Unreleased]

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

### Added
- improve OriginalValuesKnown docs ([#1083](https://github.com/bluealloy/revm/pull/1083))

### Other
- Add memory offset ([#1032](https://github.com/bluealloy/revm/pull/1032))

## [5.0.0](https://github.com/bluealloy/revm/compare/revm-v4.0.0...revm-v5.0.0) - 2024-02-12

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions crates/revm/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ keywords = ["no_std", "ethereum", "evm", "revm"]
license = "MIT"
name = "revm"
repository = "https://github.com/bluealloy/revm"
version = "5.0.0"
version = "6.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 = "2.1.0", default-features = false }
revm-precompile = { path = "../precompile", version = "4.0.0", default-features = false }
revm-interpreter = { path = "../interpreter", version = "3.0.0", default-features = false }
revm-precompile = { path = "../precompile", version = "4.0.1", default-features = false }

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

0 comments on commit c699172

Please sign in to comment.