diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e2984822..74b7aec94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.10.3 (2024-11-19) - `air`, `prover`, and `verifier` crates only +- Fix partition size calculations in `PartitionOptions` (#341). + ## 0.10.2 (2024-11-18) - Implement `core::error::Error` for error types (#341). diff --git a/air/Cargo.toml b/air/Cargo.toml index 0a363fd76..4365cd205 100644 --- a/air/Cargo.toml +++ b/air/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "winter-air" -version = "0.10.2" +version = "0.10.3" 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.10.2" +documentation = "https://docs.rs/winter-air/0.10.3" categories = ["cryptography", "no-std"] keywords = ["crypto", "arithmetization", "air"] edition = "2021" diff --git a/prover/Cargo.toml b/prover/Cargo.toml index c02905ca4..d3d299159 100644 --- a/prover/Cargo.toml +++ b/prover/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "winter-prover" -version = "0.10.2" +version = "0.10.3" description = "Winterfell STARK prover" authors = ["winterfell contributors"] readme = "README.md" license = "MIT" repository = "https://github.com/novifinancial/winterfell" -documentation = "https://docs.rs/winter-prover/0.10.2" +documentation = "https://docs.rs/winter-prover/0.10.3" categories = ["cryptography", "no-std"] keywords = ["crypto", "zkp", "stark", "prover"] edition = "2021" diff --git a/verifier/Cargo.toml b/verifier/Cargo.toml index 4acf3d063..0d766a53f 100644 --- a/verifier/Cargo.toml +++ b/verifier/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "winter-verifier" -version = "0.10.2" +version = "0.10.3" description = "Winterfell STARK verifier" authors = ["winterfell contributors"] readme = "README.md" license = "MIT" repository = "https://github.com/novifinancial/winterfell" -documentation = "https://docs.rs/winter-verifier/0.10.2" +documentation = "https://docs.rs/winter-verifier/0.10.3" categories = ["cryptography", "no-std"] keywords = ["crypto", "zkp", "stark", "verifier"] edition = "2021"