diff --git a/CHANGELOG.md b/CHANGELOG.md index b238fdd569..a6dca45a3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ Because this is workspace with multi libraries, tags will be simplified, and with this document you can match version of project with git tag. +# v42 tag +date: 29.08.2024 + +new EIP-7702 implemented. Passing all EOF and EIP-7702 tests. +Preparation for devnet-3. + +revme: 0.9.0 -> 0.10.0 +revm: 13.0.0 -> 14.0.0 +revm-interpreter: 9.0.0 -> 10.0.0 +revm-primitives: 8.0.0 -> 9.0.0 +revm-precompile: 10.0.0 -> 11.0.0 + # v41 tag date: 08.08.2024 diff --git a/Cargo.lock b/Cargo.lock index 97bf7d6ba8..0f5464c413 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3125,7 +3125,7 @@ dependencies = [ [[package]] name = "revm-precompile" -version = "10.1.0" +version = "11.0.0" dependencies = [ "aurora-engine-modexp", "blst", diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index 90bcbc6225..b548f35f22 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 = "10.1.0" +version = "11.0.0" readme = "../../README.md" [package.metadata.docs.rs] diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index e0caf66142..431e01672d 100644 --- a/crates/revm/Cargo.toml +++ b/crates/revm/Cargo.toml @@ -24,7 +24,7 @@ all = "warn" [dependencies] # revm revm-interpreter = { path = "../interpreter", version = "10.0.0", default-features = false } -revm-precompile = { path = "../precompile", version = "10.1.0", default-features = false } +revm-precompile = { path = "../precompile", version = "11.0.0", default-features = false } # misc auto_impl = { version = "1.2", default-features = false }