Skip to content

Commit

Permalink
update deps and bump versions (#150)
Browse files Browse the repository at this point in the history
* cargo upgrade --workspace hashbrown parity-util-mem parity-scale-codec

* major bump memory-db

* major bump trie-bench

* major bump trie-db-test

* major bump reference-trie

* major bump trie-root-test

* fix typo

* minor bump trie-db
  • Loading branch information
ordian authored Feb 4, 2022
1 parent 2e02b09 commit 57e3f11
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 15 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.29.0] - 2022-02-04
- Update `parity-util-mem` to 0.11. [#150](https://github.com/paritytech/trie/pull/150)

## [0.28.0] - 2021-10-19
- Change in api bound. [#142](https://github.com/paritytech/trie/pull/142)

Expand Down
6 changes: 3 additions & 3 deletions memory-db/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "memory-db"
version = "0.28.0"
version = "0.29.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "In-memory implementation of hash-db, useful for tests"
repository = "https://github.com/paritytech/trie"
license = "Apache-2.0"
edition = "2018"

[dependencies]
parity-util-mem = { version = "0.10.0", default-features = false, features = ["hashbrown"] }
parity-util-mem = { version = "0.11.0", default-features = false, features = ["hashbrown"] }
hash-db = { version = "0.15.2", path = "../hash-db", default-features = false }
hashbrown = { version = "0.11", default-features = false, features = [ "ahash" ] }
hashbrown = { version = "0.12.0", default-features = false, features = [ "ahash" ] }

[dev-dependencies]
keccak-hasher = { path = "../test-support/keccak-hasher" }
Expand Down
3 changes: 3 additions & 0 deletions test-support/reference-trie/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.25.0] - 2022-02-04
- Updated `parity-scale-codec` to 3.0. [#150](https://github.com/paritytech/trie/pull/150)

## [0.24.0] - 2021-10-19
- Additional test codec substrate like. [#142](https://github.com/paritytech/trie/pull/142)

Expand Down
4 changes: 2 additions & 2 deletions test-support/reference-trie/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "reference-trie"
version = "0.24.0"
version = "0.25.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Simple reference trie format"
repository = "https://github.com/paritytech/trie/"
Expand All @@ -13,7 +13,7 @@ hash256-std-hasher = { path = "../../hash256-std-hasher", version = "0.15.2" }
keccak-hasher = { path = "../keccak-hasher", version = "0.15.3" }
trie-db = { path = "../../trie-db", default-features = false, version = "0.23.0" }
trie-root = { path = "../../trie-root", default-features = false, version = "0.17.0" }
parity-scale-codec = { version = "2", features = ["derive"] }
parity-scale-codec = { version = "3.0.0", features = ["derive"] }

[dev-dependencies]
trie-bench = { path = "../trie-bench" }
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.30.0] - 2022-02-04
- Updated `memory-db` to 0.29. [#150](https://github.com/paritytech/trie/pull/150)

## [0.29.0] - 2021-10-19
- Updated memory-db, triedb and trie-root. [#142](https://github.com/paritytech/trie/pull/142)

Expand Down
6 changes: 3 additions & 3 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.29.0"
version = "0.30.0"
authors = ["Parity Technologies <admin@parity.io>"]
repository = "https://github.com/paritytech/trie/"
license = "Apache-2.0"
Expand All @@ -11,8 +11,8 @@ 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.28.0" }
memory-db = { path = "../../memory-db", version = "0.29.0" }
trie-root = { path = "../../trie-root", version = "0.17.0" }
trie-db = { path = "../../trie-db", version = "0.23.0" }
criterion = "0.3.3"
parity-scale-codec = { version = "2" }
parity-scale-codec = "3.0.0"
3 changes: 3 additions & 0 deletions trie-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.23.1] - 2022-02-04
- Updated `hashbrown` to 0.12. [#150](https://github.com/paritytech/trie/pull/150)

## [0.23.0] - 2021-10-19
- Support for value nodes. [#142](https://github.com/paritytech/trie/pull/142)

Expand Down
4 changes: 2 additions & 2 deletions trie-db/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trie-db"
version = "0.23.0"
version = "0.23.1"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Merkle-Patricia Trie generic over key hasher and node encoding"
repository = "https://github.com/paritytech/trie"
Expand All @@ -11,7 +11,7 @@ edition = "2018"
log = "0.4"
smallvec = "1.0.0"
hash-db = { path = "../hash-db", default-features = false, version = "0.15.2"}
hashbrown = { version = "0.11.2", default-features = false, features = ["ahash"] }
hashbrown = { version = "0.12.0", default-features = false, features = ["ahash"] }
rustc-hex = { version = "2.1.0", default-features = false, optional = true }

[features]
Expand Down
6 changes: 3 additions & 3 deletions trie-db/test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trie-db-test"
version = "0.24.0"
version = "0.25.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Tests for trie-db crate"
repository = "https://github.com/paritytech/trie"
Expand All @@ -15,12 +15,12 @@ harness = false
trie-db = { path = "..", version = "0.23.0"}
hash-db = { path = "../../hash-db", version = "0.15.2"}
rustc-hex = { version = "2.1.0" }
memory-db = { path = "../../memory-db", version = "0.28.0" }
memory-db = { path = "../../memory-db", version = "0.29.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" }
keccak-hasher = { path = "../../test-support/keccak-hasher", version = "0.15.2" }
reference-trie = { path = "../../test-support/reference-trie", version = "0.24.0" }
reference-trie = { path = "../../test-support/reference-trie", version = "0.25.0" }
hex-literal = "0.3"
criterion = "0.3"
env_logger = "0.9"
Expand Down
4 changes: 2 additions & 2 deletions trie-root/test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trie-root-test"
version = "0.17.0"
version = "0.18.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Tests fo trie-root crate"
repository = "https://github.com/paritytech/trie"
Expand All @@ -14,4 +14,4 @@ hash-db = { path = "../../hash-db", version = "0.15.2" }
hex-literal = "0.3"
keccak-hasher = { path = "../../test-support/keccak-hasher", version = "0.15.2" }
trie-standardmap = { path = "../../test-support/trie-standardmap", version = "0.15.2" }
reference-trie = { path = "../../test-support/reference-trie", version = "0.24.0" }
reference-trie = { path = "../../test-support/reference-trie", version = "0.25.0" }

0 comments on commit 57e3f11

Please sign in to comment.