Skip to content

Commit

Permalink
chore: bump versions bcs of primitives (bluealloy#1631)
Browse files Browse the repository at this point in the history
* bump versions for primitives

* bump revm
  • Loading branch information
rakita authored and j75689 committed Aug 1, 2024
1 parent 7d5cc2d commit bc6116b
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ Because this is workspace with multi libraries, tags will be simplified, and wit
# v40 tag
date 17.07.2024

EOF bugfix.

* revm: 12.0.0 -> 12.1.0
* revm-interpreter: 8.0.0 -> 8.1.0
* revm-primitives: 7.0.0 -> 7.1.0
* revm-precompile: 9.1.0 -> 8.2.0

# v39 tag
date: 16.07.2024
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.6"
hex = "0.4"
revm = { path = "../../crates/revm", version = "12.0.0", default-features=false }
revm = { path = "../../crates/revm", version = "12.1.0", default-features=false }
microbench = "0.5"
alloy-sol-macro = "0.7.7"
alloy-sol-types = "0.7.7"
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 = "12.0.0", default-features = false, features = [
revm = { path = "../../crates/revm", version = "12.1.0", default-features = false, features = [
"ethersdb",
"std",
"serde-json",
Expand Down
2 changes: 1 addition & 1 deletion crates/interpreter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ rust_2018_idioms = "deny"
all = "warn"

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

paste = { version = "1.0", optional = true }
phf = { version = "0.11", default-features = false, optional = true, features = [
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,7 +6,7 @@ keywords = ["no_std", "ethereum", "evm", "revm", "precompiles"]
license = "MIT"
name = "revm-precompile"
repository = "https://github.com/bluealloy/revm"
version = "9.1.0"
version = "9.2.0"
readme = "../../README.md"

[package.metadata.docs.rs]
Expand All @@ -27,7 +27,7 @@ alloy-rlp = { version = "0.3.7", default-features = false, features = [
"derive",
] }

revm-primitives = { path = "../primitives", version = "7.0.0", default-features = false }
revm-primitives = { path = "../primitives", version = "7.1.0", default-features = false }
once_cell = { version = "1.19", default-features = false, features = ["alloc"] }

# ecRecover
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 = "7.0.0"
version = "7.1.0"
readme = "../../README.md"

[package.metadata.docs.rs]
Expand Down
2 changes: 1 addition & 1 deletion crates/revm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ all = "warn"
[dependencies]
# revm
revm-interpreter = { path = "../interpreter", version = "8.1.0", default-features = false }
revm-precompile = { path = "../precompile", version = "9.1.0", default-features = false }
revm-precompile = { path = "../precompile", version = "9.2.0", default-features = false }

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

0 comments on commit bc6116b

Please sign in to comment.