From 88c983c21a819bf96b6308abb291e519aec5fa70 Mon Sep 17 00:00:00 2001 From: cheme Date: Tue, 14 May 2024 09:15:57 +0200 Subject: [PATCH] minor version update --- trie-db/CHANGELOG.md | 3 +++ trie-db/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/trie-db/CHANGELOG.md b/trie-db/CHANGELOG.md index fe4a5b99..38d02384 100644 --- a/trie-db/CHANGELOG.md +++ b/trie-db/CHANGELOG.md @@ -4,6 +4,9 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ +## [0.29.1] - 2024-05-24 +- Fix backward iterator seek [#215](https://github.com/paritytech/trie/pull/215) + ## [0.29.0] - 2024-03-04 - Implements `DoubleEndedIterator` for trie iterator [#208](https://github.com/paritytech/trie/pull/208) diff --git a/trie-db/Cargo.toml b/trie-db/Cargo.toml index 0b278114..287c202b 100644 --- a/trie-db/Cargo.toml +++ b/trie-db/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trie-db" -version = "0.29.0" +version = "0.29.1" authors = ["Parity Technologies "] description = "Merkle-Patricia Trie generic over key hasher and node encoding" repository = "https://github.com/paritytech/trie"