From bafe64b64a67bcd4db62729ba29df94caa38c53b Mon Sep 17 00:00:00 2001 From: rakita Date: Thu, 17 Oct 2024 17:56:09 +0200 Subject: [PATCH] bump major version number --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 13 ++++++------- bins/revm-test/Cargo.toml | 4 ++-- bins/revme/CHANGELOG.md | 6 ++++++ bins/revme/Cargo.toml | 5 ++--- crates/interpreter/CHANGELOG.md | 2 +- crates/interpreter/Cargo.toml | 4 ++-- crates/precompile/CHANGELOG.md | 2 +- crates/precompile/Cargo.toml | 4 ++-- crates/primitives/CHANGELOG.md | 2 +- crates/primitives/Cargo.toml | 2 +- crates/revm/CHANGELOG.md | 6 ++++++ crates/revm/Cargo.toml | 6 +++--- 13 files changed, 43 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f6f758616a..1067d984ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ Because this is workspace with multi libraries, tags will be simplified, and with this document you can match version of project with git tag. +# v47 tag +date: 17.10.2024 +Maintenance release. bumping new alloy-eip7702 + +* `revme`: 0.11.0 -> 1.0.0 +* `revm`: 15.0.0 -> 16.0.0 +* `revm-primitives`: 11.0.0 -> 12.0.0 +* `revm-precompile`: 12.0.0 -> 13.0.0 +* `revm-interpreter`: 11.0.0 -> 12.0.0 + # v46 tag date: 17.10.2024 Maintenance release. EIP-7702 newest changes, alloy-primitives bump. diff --git a/Cargo.lock b/Cargo.lock index a08b4bf06b..938794949b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3154,7 +3154,7 @@ dependencies = [ [[package]] name = "revm" -version = "15.0.0" +version = "16.0.0" dependencies = [ "alloy-eips", "alloy-provider", @@ -3180,7 +3180,7 @@ dependencies = [ [[package]] name = "revm-interpreter" -version = "11.0.1" +version = "12.0.0" dependencies = [ "bincode", "paste", @@ -3193,7 +3193,7 @@ dependencies = [ [[package]] name = "revm-precompile" -version = "12.0.1" +version = "13.0.0" dependencies = [ "aurora-engine-modexp", "blst", @@ -3219,7 +3219,7 @@ dependencies = [ [[package]] name = "revm-primitives" -version = "11.0.1" +version = "12.0.0" dependencies = [ "alloy-eip2930", "alloy-eip7702 0.2.0", @@ -3238,7 +3238,7 @@ dependencies = [ [[package]] name = "revm-test" -version = "0.1.0" +version = "1.0.0" dependencies = [ "alloy-sol-macro", "alloy-sol-types", @@ -3252,11 +3252,10 @@ dependencies = [ [[package]] name = "revme" -version = "0.11.0" +version = "1.0.0" dependencies = [ "alloy-rlp", "hash-db", - "hashbrown 0.14.5", "hex", "indicatif", "k256", diff --git a/bins/revm-test/Cargo.toml b/bins/revm-test/Cargo.toml index e8444047bf..a850a68196 100644 --- a/bins/revm-test/Cargo.toml +++ b/bins/revm-test/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "revm-test" -version = "0.1.0" +version = "1.0.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] bytes = "1.7" hex = "0.4" -revm = { path = "../../crates/revm", version = "15.0.0", default-features=false } +revm = { path = "../../crates/revm", version = "16.0.0", default-features=false } microbench = "0.5" alloy-sol-macro = "0.8.0" alloy-sol-types = "0.8.2" diff --git a/bins/revme/CHANGELOG.md b/bins/revme/CHANGELOG.md index 3fdd51af13..3426616f05 100644 --- a/bins/revme/CHANGELOG.md +++ b/bins/revme/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0](https://github.com/bluealloy/revm/compare/revme-v0.11.0...revme-v1.0.0) - 2024-09-26 + +### Other + +- update Cargo.lock dependencies + ## [0.11.0](https://github.com/bluealloy/revm/compare/revme-v0.10.3...revme-v0.11.0) - 2024-10-17 ### Added diff --git a/bins/revme/Cargo.toml b/bins/revme/Cargo.toml index 2280678c34..0a5553d4a9 100644 --- a/bins/revme/Cargo.toml +++ b/bins/revme/Cargo.toml @@ -6,16 +6,15 @@ keywords = ["ethereum", "evm"] license = "MIT" repository = "https://github.com/bluealloy/revm" description = "Rust Ethereum Virtual Machine Executable" -version = "0.11.0" +version = "1.0.0" [dependencies] hash-db = "0.15" hex = "0.4" -hashbrown = "0.14" indicatif = "0.17" microbench = "0.5" plain_hasher = "0.2" -revm = { path = "../../crates/revm", version = "15.0.0", default-features = false, features = [ +revm = { path = "../../crates/revm", version = "16.0.0", default-features = false, features = [ "ethersdb", "std", "serde-json", diff --git a/crates/interpreter/CHANGELOG.md b/crates/interpreter/CHANGELOG.md index 30c2dfbdab..191d4c99bb 100644 --- a/crates/interpreter/CHANGELOG.md +++ b/crates/interpreter/CHANGELOG.md @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [11.0.1](https://github.com/bluealloy/revm/compare/revm-interpreter-v11.0.0...revm-interpreter-v11.0.1) - 2024-10-17 +## [12.0.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v11.0.0...revm-interpreter-v12.0.0) - 2024-10-17 ### Other diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index 139c0ce7d1..1399622b72 100644 --- a/crates/interpreter/Cargo.toml +++ b/crates/interpreter/Cargo.toml @@ -6,7 +6,7 @@ keywords = ["no_std", "ethereum", "evm", "revm", "interpreter"] license = "MIT" name = "revm-interpreter" repository = "https://github.com/bluealloy/revm" -version = "11.0.1" +version = "12.0.0" readme = "../../README.md" [package.metadata.docs.rs] @@ -22,7 +22,7 @@ rust_2018_idioms = "deny" all = "warn" [dependencies] -revm-primitives = { path = "../primitives", version = "11.0.1", default-features = false } +revm-primitives = { path = "../primitives", version = "12.0.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/CHANGELOG.md b/crates/precompile/CHANGELOG.md index 80d46ebb64..54f9bac639 100644 --- a/crates/precompile/CHANGELOG.md +++ b/crates/precompile/CHANGELOG.md @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [12.0.1](https://github.com/bluealloy/revm/compare/revm-precompile-v12.0.0...revm-precompile-v12.0.1) - 2024-10-17 +## [13.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v12.0.0...revm-precompile-v13.0.0) - 2024-10-17 ### Other diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index 4ecb2ce786..b7cee83bb4 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 = "12.0.1" +version = "13.0.0" readme = "../../README.md" [package.metadata.docs.rs] @@ -22,7 +22,7 @@ rust_2018_idioms = "deny" all = "warn" [dependencies] -revm-primitives = { path = "../primitives", version = "11.0.1", default-features = false } +revm-primitives = { path = "../primitives", version = "12.0.0", default-features = false } once_cell = { version = "1.19", default-features = false, features = ["alloc"] } # ecRecover diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index 7372e05cb4..b410ca77fa 100644 --- a/crates/primitives/CHANGELOG.md +++ b/crates/primitives/CHANGELOG.md @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [11.0.1](https://github.com/bluealloy/revm/compare/revm-primitives-v11.0.0...revm-primitives-v11.0.1) - 2024-10-17 +## [12.0.0](https://github.com/bluealloy/revm/compare/revm-primitives-v11.0.0...revm-primitives-v12.0.0) - 2024-10-17 ### Other diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index a204190ab8..8e825a2638 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 = "11.0.1" +version = "12.0.0" readme = "../../README.md" [package.metadata.docs.rs] diff --git a/crates/revm/CHANGELOG.md b/crates/revm/CHANGELOG.md index 9d2b93eae4..22a04fe8f4 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] +## [16.0.0](https://github.com/bluealloy/revm/compare/revm-v15.0.0...revm-v16.0.0) - 2024-10-17 + +### Other + +- update Cargo.toml dependencies + ## [15.0.0](https://github.com/bluealloy/revm/compare/revm-v14.0.3...revm-v15.0.0) - 2024-10-17 ### Added diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index 1c76b3ddb3..8df3130ec3 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 = "15.0.0" +version = "16.0.0" readme = "../../README.md" [package.metadata.docs.rs] @@ -23,8 +23,8 @@ all = "warn" [dependencies] # revm -revm-interpreter = { path = "../interpreter", version = "11.0.1", default-features = false } -revm-precompile = { path = "../precompile", version = "12.0.1", default-features = false } +revm-interpreter = { path = "../interpreter", version = "12.0.0", default-features = false } +revm-precompile = { path = "../precompile", version = "13.0.0", default-features = false } # misc auto_impl = { version = "1.2", default-features = false }