Skip to content

Commit

Permalink
preparing release 0.29 of triedb
Browse files Browse the repository at this point in the history
  • Loading branch information
cheme committed Apr 3, 2024
1 parent 542829a commit 01ce407
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion test-support/reference-trie/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2018"
[dependencies]
hash-db = { path = "../../hash-db" , version = "0.16.0"}
keccak-hasher = { path = "../keccak-hasher", version = "0.16.0" }
trie-db = { path = "../../trie-db", default-features = false, version = "0.28.0" }
trie-db = { path = "../../trie-db", default-features = false, version = "0.29.0" }
trie-root = { path = "../../trie-root", default-features = false, version = "0.18.0" }
parity-scale-codec = { version = "3.0.0", features = ["derive"] }
hashbrown = { version = "0.14.1", default-features = false, features = ["ahash"] }
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.39.0] - 2023-09-12
- chore: Release trie-db 0.29.0 [#200](https://github.com/paritytech/trie/pull/200)

## [0.38.0] - 2023-09-12
- chore: Release trie-db 0.28.0 [#200](https://github.com/paritytech/trie/pull/200)

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.38.0"
version = "0.39.0"
authors = ["Parity Technologies <[email protected]>"]
repository = "https://github.com/paritytech/trie/"
license = "Apache-2.0"
Expand All @@ -13,6 +13,6 @@ 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" }
trie-root = { path = "../../trie-root", version = "0.18.0" }
trie-db = { path = "../../trie-db", version = "0.28.0" }
trie-db = { path = "../../trie-db", version = "0.29.0" }
criterion = "0.5.1"
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 @@ -4,6 +4,9 @@ The format is based on [Keep a Changelog].

[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## [0.29.0] - 2024-03-04
- Implements `DoubleEndedIterator` for trie iterator [#208](https://github.com/paritytech/trie/pull/208)

## [0.28.0] - 2023-09-12
- Make `trie_nodes_recorded_for_key` work for inline values [#194](https://github.com/paritytech/trie/pull/194)
- trie-db: Fetch the closest merkle value [#199](https://github.com/paritytech/trie/pull/199)
Expand Down
2 changes: 1 addition & 1 deletion trie-db/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trie-db"
version = "0.28.0"
version = "0.29.0"
authors = ["Parity Technologies <[email protected]>"]
description = "Merkle-Patricia Trie generic over key hasher and node encoding"
repository = "https://github.com/paritytech/trie"
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 @@ -12,7 +12,7 @@ name = "bench"
harness = false

[dependencies]
trie-db = { path = "..", version = "0.28.0"}
trie-db = { path = "..", version = "0.29.0"}
hash-db = { path = "../../hash-db", version = "0.16.0"}
memory-db = { path = "../../memory-db", version = "0.32.0" }
rand = { version = "0.8", default-features = false, features = ["small_rng"] }
Expand Down
2 changes: 1 addition & 1 deletion trie-eip1186/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "Apache-2.0"
edition = "2018"

[dependencies]
trie-db = { path = "../trie-db", default-features = false, version = "0.28.0"}
trie-db = { path = "../trie-db", default-features = false, version = "0.29.0"}
hash-db = { path = "../hash-db", default-features = false, version = "0.16.0"}

[features]
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 @@ -9,7 +9,7 @@ edition = "2018"

[dependencies]
trie-eip1186 = { path = "..", version = "0.5.0"}
trie-db = { path = "../../trie-db", version = "0.28.0"}
trie-db = { path = "../../trie-db", version = "0.29.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" }

0 comments on commit 01ce407

Please sign in to comment.