Browse Source

chore: update crate version to v0.3

al-gkr-basic-workflow
Bobbin Threadbare 2 years ago
parent
commit
61db888b2c
2 changed files with 9 additions and 2 deletions
  1. +7
    -0
      CHANGELOG.md
  2. +2
    -2
      Cargo.toml

+ 7
- 0
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) ## 0.2.0 (2023-03-24)
- Implemented `Mmr` and related structs (#67). - Implemented `Mmr` and related structs (#67).

+ 2
- 2
Cargo.toml

@ -1,12 +1,12 @@
[package] [package]
name = "miden-crypto" name = "miden-crypto"
version = "0.2.0"
version = "0.3.0"
description = "Miden Cryptographic primitives" description = "Miden Cryptographic primitives"
authors = ["miden contributors"] authors = ["miden contributors"]
readme = "README.md" readme = "README.md"
license = "MIT" license = "MIT"
repository = "https://github.com/0xPolygonMiden/crypto" 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"] categories = ["cryptography", "no-std"]
keywords = ["miden", "crypto", "hash", "merkle"] keywords = ["miden", "crypto", "hash", "merkle"]
edition = "2021" edition = "2021"

Loading…
Cancel
Save