diff --git a/CHANGELOG.md b/CHANGELOG.md index dbeec9b1b4..33f0ba356f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +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. +# v49 tag +date 23.10.2024 +Maintenance release. Bump alloydb deps. + +* `revm`: 17.0.0 -> 17.1.0 (✓ API compatible changes) + # v48 tag date 23.10.2024 Maintenance release. Bug fix for EIP-7702. * `revm`: 16.0.0 -> 17.0.0 (✓ API compatible changes) * `revm-primitives`: 12.0.0 -> 13.0.0 (✓ API compatible changes) -* `revm-test`: 1.0.0 +* `revme`: 1.0.0 -> 2.0.0 * `revm-interpreter`: 12.0.0 -> 13.0.0 * `revm-precompile`: 13.0.0 -> 14.0.0 diff --git a/Cargo.lock b/Cargo.lock index f1c7238929..fc48f1ee7e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3172,7 +3172,7 @@ dependencies = [ [[package]] name = "revm" -version = "17.0.0" +version = "17.1.0" dependencies = [ "alloy-eips", "alloy-provider", diff --git a/bins/revm-test/Cargo.toml b/bins/revm-test/Cargo.toml index 7786b77685..42db946bed 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 = "17.0.0", default-features=false } +revm = { path = "../../crates/revm", version = "17.1.0", default-features=false } microbench = "0.5" alloy-sol-macro = "0.8.0" alloy-sol-types = "0.8.2" diff --git a/bins/revme/Cargo.toml b/bins/revme/Cargo.toml index 26774f62d6..7e978416dc 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 = "17.0.0", default-features = false, features = [ +revm = { path = "../../crates/revm", version = "17.1.0", default-features = false, features = [ "ethersdb", "std", "serde-json", diff --git a/crates/revm/CHANGELOG.md b/crates/revm/CHANGELOG.md index bfed481467..850da42063 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] +## [17.1.0](https://github.com/bluealloy/revm/compare/revm-v17.0.0...revm-v17.1.0) - 2024-10-23 + +### Other + +- chore: bump alloydb deps ([#1832](https://github.com/bluealloy/revm/pull/1832)) + ## [17.0.0](https://github.com/bluealloy/revm/compare/revm-v16.0.0...revm-v17.0.0) - 2024-10-23 ### Other diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index 3e330c438a..6292a76995 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 = "17.0.0" +version = "17.1.0" readme = "../../README.md" [package.metadata.docs.rs]