From bc6116bd867785060f7f4b094104fad398303ad0 Mon Sep 17 00:00:00 2001 From: rakita Date: Wed, 17 Jul 2024 01:17:45 +0200 Subject: [PATCH] chore: bump versions bcs of primitives (#1631) * bump versions for primitives * bump revm --- CHANGELOG.md | 4 ++++ Cargo.lock | 4 ++-- bins/revm-test/Cargo.toml | 2 +- bins/revme/Cargo.toml | 2 +- crates/interpreter/Cargo.toml | 2 +- crates/precompile/Cargo.toml | 4 ++-- crates/primitives/Cargo.toml | 2 +- crates/revm/Cargo.toml | 2 +- 8 files changed, 13 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d7762013f3..d42e7c52ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 2324550b3b..ce2f1353ae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4025,7 +4025,7 @@ dependencies = [ [[package]] name = "revm-precompile" -version = "9.1.0" +version = "9.2.0" dependencies = [ "alloy-rlp", "aurora-engine-modexp", @@ -4060,7 +4060,7 @@ dependencies = [ [[package]] name = "revm-primitives" -version = "7.0.0" +version = "7.1.0" dependencies = [ "alloy-eips", "alloy-primitives", diff --git a/bins/revm-test/Cargo.toml b/bins/revm-test/Cargo.toml index 458cf26915..4f9591278e 100644 --- a/bins/revm-test/Cargo.toml +++ b/bins/revm-test/Cargo.toml @@ -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" diff --git a/bins/revme/Cargo.toml b/bins/revme/Cargo.toml index 72f15b0d05..2fe8e8b2ec 100644 --- a/bins/revme/Cargo.toml +++ b/bins/revme/Cargo.toml @@ -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", diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index 606d786544..91be4cdce6 100644 --- a/crates/interpreter/Cargo.toml +++ b/crates/interpreter/Cargo.toml @@ -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 = [ diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index 90e9dd350a..a63a239038 100644 --- a/crates/precompile/Cargo.toml +++ b/crates/precompile/Cargo.toml @@ -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] @@ -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 diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 99b27ecc67..fca32d6a06 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -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] diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index ddb04bdb6f..1d17e07c11 100644 --- a/crates/revm/Cargo.toml +++ b/crates/revm/Cargo.toml @@ -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 }