diff --git a/CHANGELOG.md b/CHANGELOG.md index 5584b41719..26d918154f 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. +# v26 tag +date 02.10.2023 + +Migration to alloy primitive types. + +* revm: v3.5.0 +* revm-precompile: v2.2.0 +* revm-primitives: v1.3.0 +* revm-interpreter: v1.3.0 + # v25 tag date: 28.09.2023 diff --git a/Cargo.lock b/Cargo.lock index d0a37c9c66..6d8a6bb64b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2353,7 +2353,7 @@ dependencies = [ [[package]] name = "revm" -version = "3.4.0" +version = "3.5.0" dependencies = [ "anyhow", "auto_impl", @@ -2371,7 +2371,7 @@ dependencies = [ [[package]] name = "revm-interpreter" -version = "1.2.0" +version = "1.3.0" dependencies = [ "revm-primitives", "serde", @@ -2379,7 +2379,7 @@ dependencies = [ [[package]] name = "revm-precompile" -version = "2.1.0" +version = "2.2.0" dependencies = [ "c-kzg", "k256", @@ -2394,7 +2394,7 @@ dependencies = [ [[package]] name = "revm-primitives" -version = "1.2.0" +version = "1.3.0" dependencies = [ "alloy-primitives", "alloy-rlp", diff --git a/bins/revme/Cargo.toml b/bins/revme/Cargo.toml index a0a1200dd9..47b885acaf 100644 --- a/bins/revme/Cargo.toml +++ b/bins/revme/Cargo.toml @@ -14,7 +14,7 @@ hash-db = "0.15" hashbrown = "0.14" indicatif = "0.17" plain_hasher = "0.2" -revm = { path = "../../crates/revm", version = "3.4.0", default-features = false, features = [ +revm = { path = "../../crates/revm", version = "3.5.0", default-features = false, features = [ "ethersdb", "std", "serde", diff --git a/crates/interpreter/CHANGELOG.md b/crates/interpreter/CHANGELOG.md index 4ac263abd2..7bb22feaf0 100644 --- a/crates/interpreter/CHANGELOG.md +++ b/crates/interpreter/CHANGELOG.md @@ -1,3 +1,13 @@ + +# v1.3.0 +date 02.10.2023 + +Migration to alloy primitive types. + +Full git log: +* af4146a - feat: Alloy primitives (#724) (15 hours ago) +* 1f86e45 - chore(deps): bump proptest from 1.2.0 to 1.3.1 (#763) (22 hours ago) + # v1.2.0 date: 28.09.2023 diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index 4344260156..bc233bec39 100644 --- a/crates/interpreter/Cargo.toml +++ b/crates/interpreter/Cargo.toml @@ -6,11 +6,11 @@ keywords = ["no_std", "ethereum", "evm", "revm", "interpreter"] license = "MIT" name = "revm-interpreter" repository = "https://github.com/bluealloy/revm" -version = "1.2.0" +version = "1.3.0" readme = "../../README.md" [dependencies] -revm-primitives = { path = "../primitives", version = "1.2.0", default-features = false } +revm-primitives = { path = "../primitives", version = "1.3.0", default-features = false } # optional serde = { version = "1.0", features = ["derive", "rc"], optional = true } diff --git a/crates/precompile/CHANGELOG.md b/crates/precompile/CHANGELOG.md index 004214e7b5..73c895d2f3 100644 --- a/crates/precompile/CHANGELOG.md +++ b/crates/precompile/CHANGELOG.md @@ -1,3 +1,12 @@ + +# v2.2.0 +date 02.10.2023 + +Migration to alloy primitive types. + +Full git log: +* af4146a - feat: Alloy primitives (#724) (15 hours ago) + # v2.1.0 date 28.09.2023 diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index 1141f838a7..99d8183afa 100644 --- a/crates/precompile/Cargo.toml +++ b/crates/precompile/Cargo.toml @@ -6,13 +6,13 @@ keywords = ["no_std", "ethereum", "evm", "revm", "precompiles"] license = "MIT" name = "revm-precompile" repository = "https://github.com/bluealloy/revm" -version = "2.1.0" +version = "2.2.0" # Don't need to run build script outside of this repo exclude = ["build.rs", "src/blob/kzg_settings/*.txt"] [dependencies] -revm-primitives = { path = "../primitives", version = "1.2.0", default-features = false } +revm-primitives = { path = "../primitives", version = "1.3.0", default-features = false } bn = { package = "substrate-bn", version = "0.6", default-features = false } num = { version = "0.4.0", default-features = false, features = ["alloc"] } once_cell = { version = "1.17", default-features = false, features = ["alloc"] } diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index bd1431dce9..e5da02939b 100644 --- a/crates/primitives/CHANGELOG.md +++ b/crates/primitives/CHANGELOG.md @@ -1,3 +1,14 @@ + +# v1.3.0 +date 02.10.2023 + +Migration to alloy primitive types. + +Full git log: +* af4146a - feat: Alloy primitives (#724) (15 hours ago) +* 83d27b0 - fix: use u128 for calc_blob_gasprice (#764) (16 hours ago) +* 1f86e45 - chore(deps): bump proptest from 1.2.0 to 1.3.1 (#763) (21 hours ago) +* af4146a - feat: Alloy primitives (#724) (15 hours ago) + # v3.4.0 date: 28.09.2023 diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index e886fb6cca..017787ce3f 100644 --- a/crates/revm/Cargo.toml +++ b/crates/revm/Cargo.toml @@ -6,12 +6,12 @@ keywords = ["no_std", "ethereum", "evm", "revm"] license = "MIT" name = "revm" repository = "https://github.com/bluealloy/revm" -version = "3.4.0" +version = "3.5.0" readme = "../../README.md" [dependencies] -revm-interpreter = { path = "../interpreter", version = "1.2.0", default-features = false } -revm-precompile = { path = "../precompile", version = "2.1.0", default-features = false } +revm-interpreter = { path = "../interpreter", version = "1.3.0", default-features = false } +revm-precompile = { path = "../precompile", version = "2.2.0", default-features = false } #misc auto_impl = { version = "1.1", default-features = false }