From 3fd118c9c83279384cf1d855559b50716ecfe41d Mon Sep 17 00:00:00 2001 From: Alexandru Gheorghe Date: Fri, 23 May 2025 16:21:33 +0300 Subject: [PATCH 1/2] prepare crate releases Signed-off-by: Alexandru Gheorghe --- memory-db/Cargo.toml | 2 +- test-support/trie-bench/Cargo.toml | 2 +- trie-db/test/Cargo.toml | 2 +- trie-eip1186/test/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/memory-db/Cargo.toml b/memory-db/Cargo.toml index 211cc30c..7d381189 100644 --- a/memory-db/Cargo.toml +++ b/memory-db/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "memory-db" -version = "0.32.0" +version = "0.33.0" authors = ["Parity Technologies "] description = "In-memory implementation of hash-db, useful for tests" repository = "https://github.com/paritytech/trie" diff --git a/test-support/trie-bench/Cargo.toml b/test-support/trie-bench/Cargo.toml index 63f011bd..36472c0e 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.40.0" +version = "0.41.0" authors = ["Parity Technologies "] repository = "https://github.com/paritytech/trie/" license = "Apache-2.0" diff --git a/trie-db/test/Cargo.toml b/trie-db/test/Cargo.toml index e227ed30..b1bd8ed3 100644 --- a/trie-db/test/Cargo.toml +++ b/trie-db/test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trie-db-test" -version = "0.29.0" +version = "0.30.0" authors = ["Parity Technologies "] description = "Tests for trie-db crate" repository = "https://github.com/paritytech/trie" diff --git a/trie-eip1186/test/Cargo.toml b/trie-eip1186/test/Cargo.toml index 96e89261..c1b6ea90 100644 --- a/trie-eip1186/test/Cargo.toml +++ b/trie-eip1186/test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trie-eip1186-test" -version = "0.5.0" +version = "0.6.0" authors = ["Parity Technologies "] description = "Tests for trie-eip1186 crate" repository = "https://github.com/paritytech/trie" From 07cbb489ef366d3b87842dc5cad6f94e1b22ee8b Mon Sep 17 00:00:00 2001 From: Alexandru Gheorghe Date: Fri, 23 May 2025 16:46:16 +0300 Subject: [PATCH 2/2] Fix build Signed-off-by: Alexandru Gheorghe --- test-support/trie-bench/Cargo.toml | 2 +- trie-db/fuzz/Cargo.toml | 2 +- trie-db/test/Cargo.toml | 2 +- trie-eip1186/test/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test-support/trie-bench/Cargo.toml b/test-support/trie-bench/Cargo.toml index 36472c0e..8244d27b 100644 --- a/test-support/trie-bench/Cargo.toml +++ b/test-support/trie-bench/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" keccak-hasher = { path = "../keccak-hasher", version = "0.16.0" } trie-standardmap = { path = "../trie-standardmap", version = "0.16.0" } hash-db = { path = "../../hash-db" , version = "0.16.0"} -memory-db = { path = "../../memory-db", version = "0.32.0" } +memory-db = { path = "../../memory-db", version = "0.33.0" } trie-root = { path = "../../trie-root", version = "0.18.0" } trie-db = { path = "../../trie-db", version = "0.30.0" } criterion = "0.5.1" diff --git a/trie-db/fuzz/Cargo.toml b/trie-db/fuzz/Cargo.toml index 28750008..0d92c2a9 100644 --- a/trie-db/fuzz/Cargo.toml +++ b/trie-db/fuzz/Cargo.toml @@ -10,7 +10,7 @@ cargo-fuzz = true [dependencies] hash-db = { path = "../../hash-db", version = "0.16.0" } -memory-db = { path = "../../memory-db", version = "0.32.0" } +memory-db = { path = "../../memory-db", version = "0.33.0" } reference-trie = { path = "../../test-support/reference-trie", version = "0.29.1" } arbitrary = { version = "1.3.0", features = ["derive"] } array-bytes = "6.0.0" diff --git a/trie-db/test/Cargo.toml b/trie-db/test/Cargo.toml index b1bd8ed3..3adcc457 100644 --- a/trie-db/test/Cargo.toml +++ b/trie-db/test/Cargo.toml @@ -14,7 +14,7 @@ harness = false [dependencies] trie-db = { path = "..", version = "0.30.0"} hash-db = { path = "../../hash-db", version = "0.16.0"} -memory-db = { path = "../../memory-db", version = "0.32.0" } +memory-db = { path = "../../memory-db", version = "0.33.0" } rand = { version = "0.8", default-features = false, features = ["small_rng"] } trie-standardmap = { path = "../../test-support/trie-standardmap", version = "0.16.0" } reference-trie = { path = "../../test-support/reference-trie", version = "0.29.0" } diff --git a/trie-eip1186/test/Cargo.toml b/trie-eip1186/test/Cargo.toml index c1b6ea90..28049e9b 100644 --- a/trie-eip1186/test/Cargo.toml +++ b/trie-eip1186/test/Cargo.toml @@ -12,4 +12,4 @@ trie-eip1186 = { path = "..", version = "0.5.0"} trie-db = { path = "../../trie-db", version = "0.30.0"} hash-db = { path = "../../hash-db", version = "0.16.0"} reference-trie = { path = "../../test-support/reference-trie", version = "0.29.0" } -memory-db = { path = "../../memory-db", version = "0.32.0" } +memory-db = { path = "../../memory-db", version = "0.33.0" }