From 61db888b2cab4898937e61696a5f70ec3f29b14f Mon Sep 17 00:00:00 2001 From: Bobbin Threadbare Date: Fri, 7 Apr 2023 23:44:27 -0700 Subject: [PATCH] chore: update crate version to v0.3 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa67da3..461680b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 0.3.0 (2023-04-08) + +- Added `depth` parameter to SMT constructors in `MerkleStore` (#115). +- Optimized MMR peak hashing for Miden VM (#120). +- Added `get_leaf_depth` method to `MerkleStore` (#119). +- Added inner node iterators to `MerkleTree`, `SimpleSmt`, and `Mmr` (#117, #118, #121). + ## 0.2.0 (2023-03-24) - Implemented `Mmr` and related structs (#67). diff --git a/Cargo.toml b/Cargo.toml index 069e286..13fc97f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "miden-crypto" -version = "0.2.0" +version = "0.3.0" description = "Miden Cryptographic primitives" authors = ["miden contributors"] readme = "README.md" license = "MIT" repository = "https://github.com/0xPolygonMiden/crypto" -documentation = "https://docs.rs/miden-crypto/0.2.0" +documentation = "https://docs.rs/miden-crypto/0.3.0" categories = ["cryptography", "no-std"] keywords = ["miden", "crypto", "hash", "merkle"] edition = "2021"