Skip to content

Commit

Permalink
bump memory-db and trie-bench (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
ordian authored Nov 29, 2022
1 parent 11a934c commit b76c9db
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
3 changes: 3 additions & 0 deletions memory-db/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog].

## [Unreleased]

## [0.31.0] - 2022-11-29
- Removed `parity-util-mem` support. [#172](https://github.com/paritytech/trie/pull/172)

## [0.30.0] - 2022-09-20
- Update `parity-util-mem` to 0.12. [#166](https://github.com/paritytech/trie/pull/166)

Expand Down
2 changes: 1 addition & 1 deletion memory-db/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "memory-db"
version = "0.30.0"
version = "0.31.0"
authors = ["Parity Technologies <[email protected]>"]
description = "In-memory implementation of hash-db, useful for tests"
repository = "https://github.com/paritytech/trie"
Expand Down
3 changes: 3 additions & 0 deletions test-support/trie-bench/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog].

## [Unreleased]

## [0.33.0] - 2022-11-29
- Updated `memory-db` to 0.31. [#172](https://github.com/paritytech/trie/pull/172)

## [0.32.0] - 2022-09-20
- Updated `memory-db` to 0.30. [#166](https://github.com/paritytech/trie/pull/166)

Expand Down
4 changes: 2 additions & 2 deletions test-support/trie-bench/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "trie-bench"
description = "Standard benchmarking suite for tries"
version = "0.32.0"
version = "0.33.0"
authors = ["Parity Technologies <[email protected]>"]
repository = "https://github.com/paritytech/trie/"
license = "Apache-2.0"
Expand All @@ -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.30.0" }
memory-db = { path = "../../memory-db", version = "0.31.0" }
trie-root = { path = "../../trie-root", version = "0.17.0" }
trie-db = { path = "../../trie-db", version = "0.24.0" }
criterion = "0.3.3"
Expand Down
2 changes: 1 addition & 1 deletion trie-db/test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.30.0" }
memory-db = { path = "../../memory-db", version = "0.31.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" }
Expand Down
2 changes: 1 addition & 1 deletion trie-eip1186/test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.30.0" }
memory-db = { path = "../../memory-db", version = "0.31.0" }

0 comments on commit b76c9db

Please sign in to comment.