From b59f25582227b32d98e15fc24ad6a7a1a5981bd5 Mon Sep 17 00:00:00 2001 From: rakita Date: Mon, 6 Jan 2025 16:19:03 +0100 Subject: [PATCH] bump: v53 revm v19.2.0 (#1972) --- CHANGELOG.md | 10 +++++++++- Cargo.lock | 2 +- bins/revm-test/Cargo.toml | 2 +- bins/revme/Cargo.toml | 2 +- crates/revm/CHANGELOG.md | 6 ++++++ crates/revm/Cargo.toml | 2 +- 6 files changed, 19 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f2cd5a98d..0e7f411a1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Because this is workspace with multi libraries, tags will be simplified, and with this document you can match version of project with git tag. -# v51 tag +# v53 tag + +date: 06.01.2025 + +Fix for previous release related to Optimism. + +* `revm`: 19.1.0 -> 19.2.0 + +# v52 tag date: 06.01.2025 diff --git a/Cargo.lock b/Cargo.lock index 54a07692e8..983e863618 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3245,7 +3245,7 @@ dependencies = [ [[package]] name = "revm" -version = "19.1.0" +version = "19.2.0" dependencies = [ "alloy-eips", "alloy-provider", diff --git a/bins/revm-test/Cargo.toml b/bins/revm-test/Cargo.toml index 8ee75a3622..deac7f8782 100644 --- a/bins/revm-test/Cargo.toml +++ b/bins/revm-test/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] bytes = "1.7" hex = "0.4" -revm = { path = "../../crates/revm", version = "19.0.0", default-features=false } +revm = { path = "../../crates/revm", version = "19.2.0", default-features=false } microbench = "0.5" alloy-sol-macro = "0.8.11" alloy-sol-types = "0.8.11" diff --git a/bins/revme/Cargo.toml b/bins/revme/Cargo.toml index e62775a340..043531b65d 100644 --- a/bins/revme/Cargo.toml +++ b/bins/revme/Cargo.toml @@ -14,7 +14,7 @@ hex = "0.4" indicatif = "0.17" microbench = "0.5" plain_hasher = "0.2" -revm = { path = "../../crates/revm", version = "19.0.0", default-features = false, features = [ +revm = { path = "../../crates/revm", version = "19.2.0", default-features = false, features = [ "ethersdb", "std", "serde-json", diff --git a/crates/revm/CHANGELOG.md b/crates/revm/CHANGELOG.md index 614e1af800..e687f65037 100644 --- a/crates/revm/CHANGELOG.md +++ b/crates/revm/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [19.2.0](https://github.com/bluealloy/revm/compare/revm-v19.1.0...revm-v19.2.0) - 2025-01-06 + +### Fixed + +- *(op)* move l1block loading to verification ([#1970](https://github.com/bluealloy/revm/pull/1970)) + ## [19.1.0](https://github.com/bluealloy/revm/compare/revm-v19.0.0...revm-v19.1.0) - 2025-01-06 ### Added diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index ce67541f10..8a8cce1ca1 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 = "19.1.0" +version = "19.2.0" readme = "../../README.md" [package.metadata.docs.rs]