diff --git a/CHANGELOG.md b/CHANGELOG.md index ec6f6423e2..0db6afd1de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ Because this is workspace with multi libraries, tags will be simplified, and with this document you can match version of project with git tag. +# v23 tag +date: 19.04.2023 + +consensus bug fix inside journal. + +* revm: v3.2.0 + # v22 tag date: 14.04.2023 diff --git a/Cargo.lock b/Cargo.lock index e88dfdb014..282df19562 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1626,7 +1626,7 @@ dependencies = [ [[package]] name = "revm" -version = "3.1.1" +version = "3.2.0" dependencies = [ "auto_impl", "ethers-core", diff --git a/bins/revm-test/Cargo.toml b/bins/revm-test/Cargo.toml index 824797b108..8671ab9996 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.1" } +revm = { path = "../../crates/revm", version = "3.2.0" } microbench = "0.5" [[bin]] diff --git a/bins/revme/Cargo.toml b/bins/revme/Cargo.toml index 7c2d568617..aa87a3f6e8 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.1", default-features = false, features = [ +revm = { path = "../../crates/revm", version = "3.2.0", default-features = false, features = [ "ethersdb", "std", "serde", diff --git a/crates/revm/CHANGELOG.md b/crates/revm/CHANGELOG.md index 3220eb79b0..d2dd87b56b 100644 --- a/crates/revm/CHANGELOG.md +++ b/crates/revm/CHANGELOG.md @@ -1,3 +1,14 @@ +# v3.2.0 +date: 19.04.2023 + +consensus bug: +* fix: touched account on creation (#463) (2 hours ago) + +# v3.1.1 +date: 14.04.2023 + +bump revm dependency versions. + # v3.1.0 date: 04.04.2022 diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index 0313b769c3..792ed424fd 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 = "3.1.1" +version = "3.2.0" readme = "../../README.md" [dependencies]