diff --git a/memory-db/CHANGELOG.md b/memory-db/CHANGELOG.md index 3a355038..cc647947 100644 --- a/memory-db/CHANGELOG.md +++ b/memory-db/CHANGELOG.md @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog]. ## [Unreleased] +## [0.30.0] - 2022-09-20 +- Update `parity-util-mem` to 0.12. [#166](https://github.com/paritytech/trie/pull/166) + ## [0.29.0] - 2022-02-04 - Update `parity-util-mem` to 0.11. [#150](https://github.com/paritytech/trie/pull/150) diff --git a/memory-db/Cargo.toml b/memory-db/Cargo.toml index d160985c..acd9c881 100644 --- a/memory-db/Cargo.toml +++ b/memory-db/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "memory-db" -version = "0.29.0" +version = "0.30.0" authors = ["Parity Technologies "] description = "In-memory implementation of hash-db, useful for tests" repository = "https://github.com/paritytech/trie" @@ -8,7 +8,7 @@ license = "Apache-2.0" edition = "2018" [dependencies] -parity-util-mem = { version = "0.11.0", default-features = false, features = ["hashbrown"] } +parity-util-mem = { version = "0.12.0", default-features = false, features = ["hashbrown"] } hash-db = { version = "0.15.2", path = "../hash-db", default-features = false } hashbrown = { version = "0.12.0", default-features = false, features = [ "ahash" ] } diff --git a/test-support/trie-bench/CHANGELOG.md b/test-support/trie-bench/CHANGELOG.md index d7af1438..9fb6a28e 100644 --- a/test-support/trie-bench/CHANGELOG.md +++ b/test-support/trie-bench/CHANGELOG.md @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog]. ## [Unreleased] +## [0.32.0] - 2022-09-20 +- Updated `memory-db` to 0.30. [#166](https://github.com/paritytech/trie/pull/166) + ## [0.31.0] - 2022-08-04 - Update trie-db to 0.24.0. [#163](https://github.com/paritytech/trie/pull/163) diff --git a/test-support/trie-bench/Cargo.toml b/test-support/trie-bench/Cargo.toml index a1800134..0b55ae11 100644 --- a/test-support/trie-bench/Cargo.toml +++ b/test-support/trie-bench/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "trie-bench" description = "Standard benchmarking suite for tries" -version = "0.31.0" +version = "0.32.0" authors = ["Parity Technologies "] repository = "https://github.com/paritytech/trie/" license = "Apache-2.0" @@ -11,7 +11,7 @@ edition = "2018" keccak-hasher = { path = "../keccak-hasher", version = "0.15.2" } trie-standardmap = { path = "../trie-standardmap", version = "0.15.2" } hash-db = { path = "../../hash-db" , version = "0.15.2"} -memory-db = { path = "../../memory-db", version = "0.29.0" } +memory-db = { path = "../../memory-db", version = "0.30.0" } trie-root = { path = "../../trie-root", version = "0.17.0" } trie-db = { path = "../../trie-db", version = "0.24.0" } criterion = "0.3.3" diff --git a/trie-db/test/Cargo.toml b/trie-db/test/Cargo.toml index 3254f5ea..167aeac6 100644 --- a/trie-db/test/Cargo.toml +++ b/trie-db/test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trie-db-test" -version = "0.25.0" +version = "0.26.0" authors = ["Parity Technologies "] description = "Tests for trie-db crate" repository = "https://github.com/paritytech/trie" @@ -15,7 +15,7 @@ harness = false trie-db = { path = "..", version = "0.24.0"} hash-db = { path = "../../hash-db", version = "0.15.2"} rustc-hex = { version = "2.1.0" } -memory-db = { path = "../../memory-db", version = "0.29.0" } +memory-db = { path = "../../memory-db", version = "0.30.0" } rand = { version = "0.8", default-features = false, features = ["small_rng"] } trie-root = { path = "../../trie-root", version = "0.17.0"} trie-standardmap = { path = "../../test-support/trie-standardmap", version = "0.15.2" } diff --git a/trie-eip1186/test/Cargo.toml b/trie-eip1186/test/Cargo.toml index 84f6bda1..efa5f06a 100644 --- a/trie-eip1186/test/Cargo.toml +++ b/trie-eip1186/test/Cargo.toml @@ -12,4 +12,4 @@ trie-eip1186 = { path = "..", version = "0.2.0"} trie-db = { path = "../../trie-db", version = "0.24.0"} hash-db = { path = "../../hash-db", version = "0.15.2"} reference-trie = { path = "../../test-support/reference-trie", version = "0.26.0" } -memory-db = { path = "../../memory-db", version = "0.29.0" } +memory-db = { path = "../../memory-db", version = "0.30.0" }