Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions test-support/reference-trie/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog].

## [Unreleased]

## [0.23.1] - 2021-06-24
- Update parity-scale-codec to 2.2.0-rc.2.
## [0.23.0] - 2021-01-27
- Update parity-scale-codec to 2.0.

Expand Down
6 changes: 3 additions & 3 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.23.0"
version = "0.23.1"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Simple reference trie format"
repository = "https://github.com/paritytech/trie/"
Expand All @@ -13,10 +13,10 @@ 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.22.0" }
trie-root = { path = "../../trie-root", default-features = false, version = "0.16.0" }
parity-scale-codec = { version = "2.0.0", features = ["derive"] }
parity-scale-codec = { version = "2.2.0-rc.2", features = ["derive"] }

[dev-dependencies]
trie-bench = { path = "../trie-bench", version = "0.27.0" }
trie-bench = { path = "../trie-bench", version = "0.27.1" }
criterion = "0.3.3"

[[bench]]
Expand Down
3 changes: 2 additions & 1 deletion test-support/trie-bench/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ The format is based on [Keep a Changelog].
[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## [Unreleased]

## [0.27.1] - 2021-06-24
- Update parity-scale-codec to 2.2.0-rc.2.
## [0.27.0] - 2021-01-27
- Update memory-db to 0.26.
- Update parity-scale-codec to 2.0.
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.27.0"
version = "0.27.1"
authors = ["Parity Technologies <admin@parity.io>"]
repository = "https://github.com/paritytech/trie/"
license = "Apache-2.0"
Expand All @@ -15,4 +15,4 @@ memory-db = { path = "../../memory-db", version = "0.26.0" }
trie-root = { path = "../../trie-root", version = "0.16.0" }
trie-db = { path = "../../trie-db", version = "0.22.0" }
criterion = "0.3.3"
parity-scale-codec = { version = "2.0.0" }
parity-scale-codec = { version = "2.2.0-rc.2" }