From e0e4610f2a11c5639a089bc87846b4727b9a84d0 Mon Sep 17 00:00:00 2001 From: grjte Date: Mon, 6 Feb 2023 14:51:41 +0000 Subject: [PATCH 1/2] docs: add changelog --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..0d45247 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ +## 0.1.1 (2023-02-06) + +- Introduced `merge_in_domain` for the RPO hash function, to allow using a specified domain value in the second capacity register when hashing two digests together. +- Added a simple sparse Merkle tree implementation. +- Added re-exports of Winterfell RandomCoin and RandomCoinError. + +## 0.1.0 (2022-12-02) + +- Initial release on crates.io containing the cryptographic primitives used in Miden VM and the Miden Rollup. +- Hash module with the BLAKE3 and Rescue Prime Optimized hash functions. + - BLAKE3 is implemented with 256-bit, 192-bit, or 160-bit output. + - RPO is implemented with 256-bit output. +- Merkle module, with a set of data structures related to Merkle trees, implemented using the RPO hash function. From d25a90b5a42151696c84e9067e4871e365f0ff9a Mon Sep 17 00:00:00 2001 From: grjte Date: Mon, 6 Feb 2023 15:00:58 +0000 Subject: [PATCH 2/2] chore: update version to 0.1.1 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 455dddc..815a42b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "miden-crypto" -version = "0.1.0" +version = "0.1.1" description="Miden Cryptographic primitives" authors = ["miden contributors"] readme="README.md"