From a44a5f8409e354890e7511e55c916f2ecdb83421 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Thu, 7 Nov 2024 15:41:15 +0100 Subject: [PATCH] chore: release 0.7.3 --- CHANGELOG.md | 22 ++++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 58f1b3b..0a01444 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.7.3](https://github.com/alloy-rs/trie/releases/tag/v0.7.3) - 2024-11-07 + +### Documentation + +- [nodes] Adjust comments about branch node masks ([#61](https://github.com/alloy-rs/trie/issues/61)) + +### Features + +- [nodes] Make `BranchNodeRef::children` public ([#62](https://github.com/alloy-rs/trie/issues/62)) + +### Miscellaneous Tasks + +- [hash-builder] Use `RlpNode::as_hash` ([#59](https://github.com/alloy-rs/trie/issues/59)) + +### Styling + +- Migrated functions for computing trie root from reth to alloy ([#55](https://github.com/alloy-rs/trie/issues/55)) + ## [0.7.2](https://github.com/alloy-rs/trie/releases/tag/v0.7.2) - 2024-10-16 ### Features @@ -12,6 +30,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [mask] Unset bit, count set bits, index of the first set bit ([#58](https://github.com/alloy-rs/trie/issues/58)) - `RlpNode::as_hash` ([#57](https://github.com/alloy-rs/trie/issues/57)) +### Miscellaneous Tasks + +- Release 0.7.2 + ## [0.7.1](https://github.com/alloy-rs/trie/releases/tag/v0.7.1) - 2024-10-14 ### Bug Fixes diff --git a/Cargo.toml b/Cargo.toml index 94b72ab..a94ee41 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "alloy-trie" -version = "0.7.2" +version = "0.7.3" authors = [ "rkrasiuk ", "gakonst ",