From 82791c4809d6275682c34b926390ecdbdc2a5297 Mon Sep 17 00:00:00 2001 From: Robin Salen Date: Mon, 12 May 2025 15:09:58 -0400 Subject: [PATCH] Bump version --- CHANGELOG.md | 15 +++++++++++++++ plonky2/Cargo.toml | 2 +- starky/Cargo.toml | 4 ++-- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 983f4ef9a..d1e967318 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.0] - 2024-11-25 +- Add constraints binding ([#1679](https://github.com/0xPolygonZero/plonky2/pull/1679)) +- Observe config parameters in challenger ([#1678](https://github.com/0xPolygonZero/plonky2/pull/1678)) +- chore: update broken links `LICENSE`([#1675](https://github.com/0xPolygonZero/plonky2/pull/1675)) +- Fix latest clippy ([#1676](https://github.com/0xPolygonZero/plonky2/pull/1676)) +- Fix documentation rendering ([#1671](https://github.com/0xPolygonZero/plonky2/pull/1671)) +- Misc updates ([#1663](https://github.com/0xPolygonZero/plonky2/pull/1663)) +- Fix clippy ([#1662](https://github.com/0xPolygonZero/plonky2/pull/1662)) +- Fix padding for LookupTableGate ([#1661](https://github.com/0xPolygonZero/plonky2/pull/1661)) +- Fix padding in LookupTableGate ([#1656](https://github.com/0xPolygonZero/plonky2/pull/1656)) +- (fix-lookup) fix: correct visibility in gate_serialization macros ([#1650](https://github.com/0xPolygonZero/plonky2/pull/1650)) +- fix: use u64 in BaseSplitGenerator ([#1647](https://github.com/0xPolygonZero/plonky2/pull/1647)) +- add serialization and deserialization for BytesHash ([#1645](https://github.com/0xPolygonZero/plonky2/pull/1645)) +- (clippy) fix: changed conditioning for timing functionality in circuit_builder ([#1640](https://github.com/0xPolygonZero/plonky2/pull/1640)) + ## [1.0.0] - 2024-11-25 ### Changed diff --git a/plonky2/Cargo.toml b/plonky2/Cargo.toml index 17128c289..83ff08519 100644 --- a/plonky2/Cargo.toml +++ b/plonky2/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "plonky2" description = "Recursive SNARKs based on PLONK and FRI" -version = "1.0.2" +version = "1.1.0" authors = ["Daniel Lubarov ", "William Borgeaud ", "Nicholas Ward "] readme = "README.md" edition.workspace = true diff --git a/starky/Cargo.toml b/starky/Cargo.toml index 80d1f3d94..1802268ab 100644 --- a/starky/Cargo.toml +++ b/starky/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "starky" description = "Implementation of STARKs" -version = "1.0.2" +version = "1.1.0" authors = ["Daniel Lubarov ", "William Borgeaud "] readme = "README.md" edition.workspace = true @@ -27,7 +27,7 @@ serde = { workspace = true, features = ["rc"] } num-bigint = { version = "0.4.3", default-features = false } # Local dependencies -plonky2 = { version = "1.0.2", path = "../plonky2", default-features = false } +plonky2 = { version = "1.1.0", path = "../plonky2", default-features = false } plonky2_maybe_rayon = { version = "1.0.0", path = "../maybe_rayon", default-features = false } plonky2_util = { version = "1.0.0", path = "../util", default-features = false }