From 67bdce2e7093c76dbfce63bbd9a6ec40df8889a6 Mon Sep 17 00:00:00 2001 From: Irakliy Khaburzaniya Date: Thu, 30 Nov 2023 20:16:29 -0800 Subject: [PATCH] updated crate versions and changelog --- CHANGELOG.md | 4 ++++ air/Cargo.toml | 4 ++-- fri/Cargo.toml | 4 ++-- utils/core/Cargo.toml | 4 ++-- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 740aae8c0..b73c20d7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.7.2 (2023-11-30) - `air`, `fri`, and `utils/core` crates only +* Minor proof serialization and deserialization refactoring (#231). +* Added `StarkProof::new_dummy()` constructor to simplify testing (#232). + ## 0.7.1 (2023-11-17) - `math` crate only * Changed `Debug` format for field elements (#228). diff --git a/air/Cargo.toml b/air/Cargo.toml index c358cbf02..c8750cbc4 100644 --- a/air/Cargo.toml +++ b/air/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "winter-air" -version = "0.7.1" +version = "0.7.2" description = "AIR components for the Winterfell STARK prover/verifier" authors = ["winterfell contributors"] readme = "README.md" license = "MIT" repository = "https://github.com/novifinancial/winterfell" -documentation = "https://docs.rs/winter-air/0.7.1" +documentation = "https://docs.rs/winter-air/0.7.2" categories = ["cryptography", "no-std"] keywords = ["crypto", "arithmetization", "air"] edition = "2021" diff --git a/fri/Cargo.toml b/fri/Cargo.toml index 09ff3e910..8dfa8fe8f 100644 --- a/fri/Cargo.toml +++ b/fri/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "winter-fri" -version = "0.7.0" +version = "0.7.2" description = "Implementation of FRI protocol for the Winterfell STARK prover/verifier" authors = ["winterfell contributors"] readme = "README.md" license = "MIT" repository = "https://github.com/novifinancial/winterfell" -documentation = "https://docs.rs/winter-fri/0.7.0" +documentation = "https://docs.rs/winter-fri/0.7.2" categories = ["cryptography", "no-std"] keywords = ["crypto", "polynomial", "commitments"] edition = "2021" diff --git a/utils/core/Cargo.toml b/utils/core/Cargo.toml index 770f67a24..53ab59eb6 100644 --- a/utils/core/Cargo.toml +++ b/utils/core/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "winter-utils" -version = "0.7.0" +version = "0.7.2" description = "Utilities for the Winterfell STARK prover/verifier" authors = ["winterfell contributors"] readme = "README.md" license = "MIT" repository = "https://github.com/novifinancial/winterfell" -documentation = "https://docs.rs/winter-utils/0.7.0" +documentation = "https://docs.rs/winter-utils/0.7.2" categories = ["cryptography", "no-std"] keywords = ["serialization", "transmute"] edition = "2021"