diff --git a/CHANGELOG.md b/CHANGELOG.md index 0db6afd1de..9139a481be 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. +# v24 tag +date: 03.05.2023 + +Cosnensus bug inside journal and some small changes. + +* revm: v3.3.0 +* revm-precompile: v2.0.3 +* revm-primitives: v1.1.2 +* revm-interpreter: v1.1.2 + # v23 tag date: 19.04.2023 diff --git a/Cargo.lock b/Cargo.lock index f49208cb49..16f089b930 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1649,7 +1649,7 @@ dependencies = [ [[package]] name = "revm" -version = "3.2.0" +version = "3.3.0" dependencies = [ "anyhow", "auto_impl", @@ -1669,7 +1669,7 @@ dependencies = [ [[package]] name = "revm-interpreter" -version = "1.1.1" +version = "1.1.2" dependencies = [ "arbitrary", "derive_more", @@ -1683,7 +1683,7 @@ dependencies = [ [[package]] name = "revm-precompile" -version = "2.0.2" +version = "2.0.3" dependencies = [ "hex", "k256", @@ -1699,7 +1699,7 @@ dependencies = [ [[package]] name = "revm-primitives" -version = "1.1.1" +version = "1.1.2" dependencies = [ "arbitrary", "auto_impl", diff --git a/bins/revm-test/Cargo.toml b/bins/revm-test/Cargo.toml index 8671ab9996..92577a3812 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.2.0" } +revm = { path = "../../crates/revm", version = "3.3.0" } microbench = "0.5" [[bin]] diff --git a/bins/revme/Cargo.toml b/bins/revme/Cargo.toml index 966bc86ae5..e9f9d07dbb 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.2.0", default-features = false, features = [ +revm = { path = "../../crates/revm", version = "3.3.0", default-features = false, features = [ "ethersdb", "std", "serde", diff --git a/crates/interpreter/CHANGELOG.md b/crates/interpreter/CHANGELOG.md index df19cb4f1e..3b0d33ce46 100644 --- a/crates/interpreter/CHANGELOG.md +++ b/crates/interpreter/CHANGELOG.md @@ -1,3 +1,8 @@ +# v1.1.2 +date: 03.05.2023 + +* 08091e1 - fix: compile errors for features (#467) (13 days ago) + # v1.1.1 date: 14.04.2023 diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index 59f606befc..a5c4fec52f 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.1" +version = "1.1.2" readme = "../../README.md" [dependencies] -revm-primitives = { path = "../primitives", version="1.1.1", default-features = false } +revm-primitives = { path = "../primitives", version="1.1.2", default-features = false } #utility derive_more = "0.99" diff --git a/crates/precompile/CHANGELOG.md b/crates/precompile/CHANGELOG.md index d840edebbc..c6a7521aba 100644 --- a/crates/precompile/CHANGELOG.md +++ b/crates/precompile/CHANGELOG.md @@ -1,3 +1,8 @@ +# v2.0.3 +date: 03.05.2023 + +Bump revm primitives. + # v2.0.2 date: 14.04.2023 diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index d245cb592f..c137bd2935 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.2" +version = "2.0.3" [dependencies] -revm-primitives = { path = "../primitives", version="1.1.1", default-features = false } +revm-primitives = { path = "../primitives", version="1.1.2", 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 4c5e6eccd2..b55f6b7f9a 100644 --- a/crates/primitives/CHANGELOG.md +++ b/crates/primitives/CHANGELOG.md @@ -1,3 +1,10 @@ +# v1.1.2 +date: 03.05.2023 + +small release: +* ccefbca - chore(deps): bump ruint from 1.7.0 to 1.8.0 (#465) (50 minutes ago) +* d7adfd5 - Fix typo in primitives/src/state.rs (#474) (50 minutes ago) +* 08091e1 - fix: compile errors for features (#467) (13 days ago) # v1.1.1 date: 14.04.2023 diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 837e51f9ea..1b1d6037e6 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.1" +version = "1.1.2" readme = "../../README.md" [dependencies] diff --git a/crates/revm/CHANGELOG.md b/crates/revm/CHANGELOG.md index d2dd87b56b..ea982f395f 100644 --- a/crates/revm/CHANGELOG.md +++ b/crates/revm/CHANGELOG.md @@ -1,3 +1,17 @@ +# v3.3.0 +date: 03.05.2023 + +Consensus bug: +* cde2f2d - fix: revert of selfdestruct with same target address (#475) (2 hours ago) + +Other small changes: +* bd0fad8 - (HEAD -> reles, origin/main, origin/HEAD) chore(deps): bump tokio from 1.27.0 to 1.28.0 (#470) (52 minutes ago) +* ccefbca - chore(deps): bump ruint from 1.7.0 to 1.8.0 (#465) (52 minutes ago) +* 7c2e0f5 - chore(deps): bump anyhow from 1.0.70 to 1.0.71 (#471) (53 minutes ago) +* d7adfd5 - Fix typo in primitives/src/state.rs (#474) (53 minutes ago) +* d0cd897 - add example to revm crate (#468) (8 days ago) +* 08091e1 - fix: compile errors for features (#467) (13 days ago) + # v3.2.0 date: 19.04.2023 diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index 252485b093..fcca760ab6 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.2.0" +version = "3.3.0" readme = "../../README.md" [dependencies] revm-precompile = { path = "../precompile", version = "2.0.2", default-features = false } -revm-interpreter = { path = "../interpreter", version = "1.1.1", default-features = false } +revm-interpreter = { path = "../interpreter", version = "1.1.2", default-features = false } auto_impl = { version = "1.0", default-features = false }