diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e26dd3048..ec6f6423e2 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. +# v22 tag +date: 14.04.2023 + +Fix for k256 build + +* revm: v3.1.1 +* revm-precompile: v2.0.2 +* revm-primitives: v1.1.1 +* revm-interpreter: v1.1.1 + # v21 tag date 04.04.2023 diff --git a/Cargo.lock b/Cargo.lock index 76a90b7eb6..e88dfdb014 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1626,7 +1626,7 @@ dependencies = [ [[package]] name = "revm" -version = "3.1.0" +version = "3.1.1" dependencies = [ "auto_impl", "ethers-core", @@ -1642,7 +1642,7 @@ dependencies = [ [[package]] name = "revm-interpreter" -version = "1.1.0" +version = "1.1.1" dependencies = [ "arbitrary", "derive_more", @@ -1656,7 +1656,7 @@ dependencies = [ [[package]] name = "revm-precompile" -version = "2.0.1" +version = "2.0.2" dependencies = [ "hex", "k256", @@ -1672,7 +1672,7 @@ dependencies = [ [[package]] name = "revm-primitives" -version = "1.1.0" +version = "1.1.1" dependencies = [ "arbitrary", "auto_impl", diff --git a/bins/revm-test/Cargo.toml b/bins/revm-test/Cargo.toml index f129a2289a..824797b108 100644 --- a/bins/revm-test/Cargo.toml +++ b/bins/revm-test/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] bytes = "1.4" hex = "0.4" -revm = { path = "../../crates/revm", version = "3.1.0" } +revm = { path = "../../crates/revm", version = "3.1.1" } microbench = "0.5" [[bin]] diff --git a/bins/revme/Cargo.toml b/bins/revme/Cargo.toml index adb1f18097..7c2d568617 100644 --- a/bins/revme/Cargo.toml +++ b/bins/revme/Cargo.toml @@ -17,7 +17,7 @@ hex = "0.4" indicatif = "0.17" plain_hasher = "0.2" primitive-types = { version = "0.12", features = ["rlp", "serde"] } -revm = { path = "../../crates/revm", version = "3.1.0", default-features = false, features = [ +revm = { path = "../../crates/revm", version = "3.1.1", default-features = false, features = [ "ethersdb", "std", "serde", diff --git a/crates/interpreter/CHANGELOG.md b/crates/interpreter/CHANGELOG.md index 2db49cc601..df19cb4f1e 100644 --- a/crates/interpreter/CHANGELOG.md +++ b/crates/interpreter/CHANGELOG.md @@ -1,3 +1,9 @@ +# v1.1.1 +date: 14.04.2023 + +Added back utility function: +* 7d9b38a - [Interpreter]: Add back `spec_gas_opcode` (#446) (9 days ago) + # v1.1.0 date: 04.04.2023 diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index 8a767cd751..498c4d84c5 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.1.0" +version = "1.1.1" readme = "../../README.md" [dependencies] -revm-primitives = { path = "../primitives", version="1.1.0", default-features = false } +revm-primitives = { path = "../primitives", version="1.1.1", default-features = false } #utility derive_more = "0.99" diff --git a/crates/precompile/CHANGELOG.md b/crates/precompile/CHANGELOG.md index 49d8014f4f..d840edebbc 100644 --- a/crates/precompile/CHANGELOG.md +++ b/crates/precompile/CHANGELOG.md @@ -1,3 +1,8 @@ +# v2.0.2 +date: 14.04.2023 + +* b2c5262 - fix: k256 compile error (#451) (7 days ago) + # v2.0.1 date: 04.04.2023 diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index ffbf388f1a..d245cb592f 100644 --- a/crates/precompile/Cargo.toml +++ b/crates/precompile/Cargo.toml @@ -6,10 +6,10 @@ keywords = ["no_std", "ethereum", "evm", "revm", "precompiles"] license = "MIT" name = "revm-precompile" repository = "https://github.com/bluealloy/revm" -version = "2.0.1" +version = "2.0.2" [dependencies] -revm-primitives = { path = "../primitives", version="1.1.0", default-features = false } +revm-primitives = { path = "../primitives", version="1.1.1", default-features = false } bn = { package = "substrate-bn", version = "0.6", default-features = false } k256 = { version = "0.13", default-features = false, features = ["ecdsa"] } num = { version = "0.4.0", default-features = false, features = ["alloc"] } diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index 895db5368c..4c5e6eccd2 100644 --- a/crates/primitives/CHANGELOG.md +++ b/crates/primitives/CHANGELOG.md @@ -1,3 +1,10 @@ +# v1.1.1 +date: 14.04.2023 + +One change: +* 4915bd1 - chore: add into_logs (#453) (3 days ago) + + # v1.1.0 date: 04.04.2023 diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index eec6114138..9a7b80afa4 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 = "1.1.0" +version = "1.1.1" readme = "../../README.md" [dependencies] diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index 947cfce0ce..0313b769c3 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.1.0" +version = "3.1.1" readme = "../../README.md" [dependencies] -revm-precompile = { path = "../precompile", version = "2.0.1", default-features = false } -revm-interpreter = { path = "../interpreter", version = "1.1.0", default-features = false } +revm-precompile = { path = "../precompile", version = "2.0.2", default-features = false } +revm-interpreter = { path = "../interpreter", version = "1.1.1", default-features = false } auto_impl = { version = "1.0", default-features = false }