From dcda57f71ad691fc5c978cdb0f05eda8f9dd78c6 Mon Sep 17 00:00:00 2001 From: Bobbin Threadbare Date: Fri, 26 May 2023 14:32:17 -0700 Subject: [PATCH] chore: update changelog --- CHANGELOG.md | 8 ++++++-- Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6158e34..eb91062 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ -## 0.5.0 (TBD) - +## 0.5.0 (2023-05-26) +* Implemented `TieredSmt` (#152, #153). +* Implemented ability to extract a subset of a `MerkleStore` (#151). +* Cleaned up `SimpleSmt` interface (#149). +* Decoupled hashing and padding of peaks in `Mmr` (#148). +* Added `inner_nodes()` to `MerkleStore` (#146). ## 0.4.0 (2023-04-21) diff --git a/Cargo.toml b/Cargo.toml index f6e0efc..f29a1bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,6 +35,6 @@ winter_math = { version = "0.6", package = "winter-math", default-features = fal winter_utils = { version = "0.6", package = "winter-utils", default-features = false } [dev-dependencies] -criterion = { version = "0.4", features = ["html_reports"] } +criterion = { version = "0.5", features = ["html_reports"] } proptest = "1.1.0" rand_utils = { version = "0.6", package = "winter-rand-utils" }