diff --git a/CHANGELOG.md b/CHANGELOG.md index d42e7c52ea..b238fdd569 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ Because this is workspace with multi libraries, tags will be simplified, and with this document you can match version of project with git tag. +# v41 tag +date: 08.08.2024 + +EOF fixes and improvements. +Optimism Granite fork support. + +* `revme`: 0.8.0 -> 0.9.0 +* `revm`: 12.1.0 -> 13.0.0 +* `revm-interpreter`: 8.1.0 -> 9.0.0 +* `revm-primitives`: 7.1.0 -> 8.0.0 +* `revm-precompile`: 9.2.0 -> 10.0.0 +* `revm-test`: 0.1.0 + # v40 tag date 17.07.2024 diff --git a/Cargo.lock b/Cargo.lock index 92b0f2a0c8..ca07789f60 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3007,7 +3007,7 @@ dependencies = [ [[package]] name = "revm" -version = "12.2.0" +version = "13.0.0" dependencies = [ "alloy-eips", "alloy-provider", @@ -3046,7 +3046,7 @@ dependencies = [ [[package]] name = "revm-precompile" -version = "9.3.0" +version = "10.0.0" dependencies = [ "aurora-engine-modexp", "blst", diff --git a/bins/revm-test/Cargo.toml b/bins/revm-test/Cargo.toml index f12c18faed..5e920ee484 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.2.0", default-features=false } +revm = { path = "../../crates/revm", version = "13.0.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 edebc78373..7ba041d9c8 100644 --- a/bins/revme/Cargo.toml +++ b/bins/revme/Cargo.toml @@ -15,12 +15,12 @@ hashbrown = "0.14" indicatif = "0.17" microbench = "0.5" plain_hasher = "0.2" -revm = { path = "../../crates/revm", version = "12.2.0", default-features = false, features = [ +revm = { path = "../../crates/revm", version = "13.0.0", default-features = false, features = [ "ethersdb", "std", "serde-json", "c-kzg", - "blst" + "blst", ] } alloy-rlp = { version = "0.3", default-features = false, features = [ "arrayvec", diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index 683028c1b0..4e9021de3c 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.3.0" +version = "10.0.0" readme = "../../README.md" [package.metadata.docs.rs] diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index 26b1d87887..2eaae45a32 100644 --- a/crates/revm/Cargo.toml +++ b/crates/revm/Cargo.toml @@ -6,7 +6,7 @@ keywords = ["no_std", "ethereum", "evm", "revm"] license = "MIT" name = "revm" repository = "https://github.com/bluealloy/revm" -version = "12.2.0" +version = "13.0.0" readme = "../../README.md" [package.metadata.docs.rs] @@ -24,7 +24,7 @@ all = "warn" [dependencies] # revm revm-interpreter = { path = "../interpreter", version = "9.0.0", default-features = false } -revm-precompile = { path = "../precompile", version = "9.3.0", default-features = false } +revm-precompile = { path = "../precompile", version = "10.0.0", default-features = false } # misc auto_impl = { version = "1.2", default-features = false }