From af45a473b43c599b7b914852a6040323a7bbab15 Mon Sep 17 00:00:00 2001 From: taceo-bot Date: Wed, 14 Aug 2024 12:16:15 +0200 Subject: [PATCH] chore: release main (#163) --- .release-please-manifest.json | 12 ++++++------ circom-mpc-compiler/CHANGELOG.md | 20 ++++++++++++++++++++ circom-mpc-compiler/Cargo.toml | 6 +++--- circom-mpc-vm/CHANGELOG.md | 11 +++++++++++ circom-mpc-vm/Cargo.toml | 2 +- co-circom/CHANGELOG.md | 21 +++++++++++++++++++++ co-circom/Cargo.toml | 10 +++++----- co-groth16/CHANGELOG.md | 11 +++++++++++ co-groth16/Cargo.toml | 2 +- co-plonk/CHANGELOG.md | 11 +++++++++++ co-plonk/Cargo.toml | 2 +- tests/Cargo.toml | 10 +++++----- 12 files changed, 96 insertions(+), 22 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index de8a0f9f..a2848536 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,12 +1,12 @@ { - "circom-mpc-compiler": "0.4.0", - "circom-mpc-vm": "0.3.0", + "circom-mpc-compiler": "0.5.0", + "circom-mpc-vm": "0.4.0", "circom-types": "0.4.0", "co-circom-snarks": "0.1.0", - "co-circom": "0.3.0", - "co-groth16": "0.3.0", - "co-plonk": "0.1.0", + "co-circom": "0.4.0", + "co-groth16": "0.4.0", + "co-plonk": "0.2.0", "mpc-core": "0.3.0", "mpc-net": "0.1.2", - "tests": "0.1.3" + "tests": "0.1.4" } \ No newline at end of file diff --git a/circom-mpc-compiler/CHANGELOG.md b/circom-mpc-compiler/CHANGELOG.md index b8d37832..d28bf61b 100644 --- a/circom-mpc-compiler/CHANGELOG.md +++ b/circom-mpc-compiler/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [0.5.0](https://github.com/TaceoLabs/collaborative-circom/compare/circom-mpc-compiler-v0.4.0...circom-mpc-compiler-v0.5.0) (2024-08-14) + + +### ⚠ BREAKING CHANGES + +* We renamed all crate names from collaborative-* to co-* for brevity, and also shortened `Collaborative` to `Co` in many types. + +### Code Refactoring + +* renamed crates to co-* ([#161](https://github.com/TaceoLabs/collaborative-circom/issues/161)) ([37f3493](https://github.com/TaceoLabs/collaborative-circom/commit/37f3493b25e41b43bbc8a89e281ae2dcb4b95484)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * circom-mpc-vm bumped from 0.3.0 to 0.4.0 + * dev-dependencies + * co-groth16 bumped from 0.3.0 to 0.4.0 + ## [0.4.0](https://github.com/TaceoLabs/collaborative-circom/compare/circom-mpc-compiler-v0.3.0...circom-mpc-compiler-v0.4.0) (2024-08-14) diff --git a/circom-mpc-compiler/Cargo.toml b/circom-mpc-compiler/Cargo.toml index c53ce01d..6c750cc9 100644 --- a/circom-mpc-compiler/Cargo.toml +++ b/circom-mpc-compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "circom-mpc-compiler" -version = "0.4.0" +version = "0.5.0" edition.workspace = true rust-version.workspace = true authors.workspace = true @@ -14,7 +14,7 @@ readme.workspace = true ark-ec.workspace = true circom-compiler = { version = "2.1.9", git = "https://github.com/TaceoLabs/circom", package = "compiler", branch = "dev" } circom-constraint_generation = { version = "2.1.9", git = "https://github.com/TaceoLabs/circom", package = "constraint_generation", branch = "dev" } -circom-mpc-vm = { version = "0.3.0", path = "../circom-mpc-vm" } +circom-mpc-vm = { version = "0.4.0", path = "../circom-mpc-vm" } circom-parser = { version = "2.1.9", git = "https://github.com/TaceoLabs/circom", package = "parser", branch = "dev" } circom-program_structure = { version = "2.1.9", git = "https://github.com/TaceoLabs/circom", package = "program_structure", branch = "dev" } circom-type_analysis = { version = "2.1.9", git = "https://github.com/TaceoLabs/circom", package = "type_analysis", branch = "dev" } @@ -25,6 +25,6 @@ serde.workspace = true [dev-dependencies] ark-bn254.workspace = true circom-types = { version = "0.4.0", path = "../circom-types" } -co-groth16 = { version = "0.3.0", path = "../co-groth16" } +co-groth16 = { version = "0.4.0", path = "../co-groth16" } mpc-core = { version = "0.3.0", path = "../mpc-core" } tracing.workspace = true diff --git a/circom-mpc-vm/CHANGELOG.md b/circom-mpc-vm/CHANGELOG.md index 5d1e2d12..55b388b1 100644 --- a/circom-mpc-vm/CHANGELOG.md +++ b/circom-mpc-vm/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.4.0](https://github.com/TaceoLabs/collaborative-circom/compare/circom-mpc-vm-v0.3.0...circom-mpc-vm-v0.4.0) (2024-08-14) + + +### ⚠ BREAKING CHANGES + +* We renamed all crate names from collaborative-* to co-* for brevity, and also shortened `Collaborative` to `Co` in many types. + +### Code Refactoring + +* renamed crates to co-* ([#161](https://github.com/TaceoLabs/collaborative-circom/issues/161)) ([37f3493](https://github.com/TaceoLabs/collaborative-circom/commit/37f3493b25e41b43bbc8a89e281ae2dcb4b95484)) + ## [0.3.0](https://github.com/TaceoLabs/collaborative-circom/compare/circom-mpc-vm-v0.2.0...circom-mpc-vm-v0.3.0) (2024-08-14) diff --git a/circom-mpc-vm/Cargo.toml b/circom-mpc-vm/Cargo.toml index 930febe0..706a4442 100644 --- a/circom-mpc-vm/Cargo.toml +++ b/circom-mpc-vm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "circom-mpc-vm" -version = "0.3.0" +version = "0.4.0" edition.workspace = true rust-version.workspace = true authors.workspace = true diff --git a/co-circom/CHANGELOG.md b/co-circom/CHANGELOG.md index 45b6b917..8af22544 100644 --- a/co-circom/CHANGELOG.md +++ b/co-circom/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## [0.4.0](https://github.com/TaceoLabs/collaborative-circom/compare/co-circom-v0.3.0...co-circom-v0.4.0) (2024-08-14) + + +### ⚠ BREAKING CHANGES + +* We renamed all crate names from collaborative-* to co-* for brevity, and also shortened `Collaborative` to `Co` in many types. + +### Code Refactoring + +* renamed crates to co-* ([#161](https://github.com/TaceoLabs/collaborative-circom/issues/161)) ([37f3493](https://github.com/TaceoLabs/collaborative-circom/commit/37f3493b25e41b43bbc8a89e281ae2dcb4b95484)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * circom-mpc-compiler bumped from 0.4.0 to 0.5.0 + * circom-mpc-vm bumped from 0.3.0 to 0.4.0 + * co-groth16 bumped from 0.3.0 to 0.4.0 + * co-plonk bumped from 0.1.0 to 0.2.0 + ## [0.3.0](https://github.com/TaceoLabs/collaborative-circom/compare/collaborative-circom-v0.2.1...collaborative-circom-v0.3.0) (2024-08-14) diff --git a/co-circom/Cargo.toml b/co-circom/Cargo.toml index e0c93244..be4f1c5d 100644 --- a/co-circom/Cargo.toml +++ b/co-circom/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "co-circom" -version = "0.3.0" +version = "0.4.0" publish.workspace = true authors.workspace = true @@ -18,15 +18,15 @@ ark-bn254.workspace = true ark-ec.workspace = true ark-ff.workspace = true bincode.workspace = true -circom-mpc-compiler = { version = "0.4.0", path = "../circom-mpc-compiler" } -circom-mpc-vm = { version = "0.3.0", path = "../circom-mpc-vm" } +circom-mpc-compiler = { version = "0.5.0", path = "../circom-mpc-compiler" } +circom-mpc-vm = { version = "0.4.0", path = "../circom-mpc-vm" } circom-types = { version = "0.4.0", path = "../circom-types" } clap.workspace = true co-circom-snarks = { version = "0.1.0", path = "../co-circom-snarks" } -co-groth16 = { version = "0.3.0", path = "../co-groth16", features = [ +co-groth16 = { version = "0.4.0", path = "../co-groth16", features = [ "verifier", ] } -co-plonk = { version = "0.1.0", path = "../co-plonk" } +co-plonk = { version = "0.2.0", path = "../co-plonk" } color-eyre.workspace = true figment.workspace = true mpc-core = { version = "0.3.0", path = "../mpc-core" } diff --git a/co-groth16/CHANGELOG.md b/co-groth16/CHANGELOG.md index b8ce016b..7d912cba 100644 --- a/co-groth16/CHANGELOG.md +++ b/co-groth16/CHANGELOG.md @@ -6,6 +6,17 @@ * mpc-core bumped from 0.2.0 to 0.2.1 * mpc-net bumped from 0.1.1 to 0.1.2 +## [0.4.0](https://github.com/TaceoLabs/collaborative-circom/compare/co-groth16-v0.3.0...co-groth16-v0.4.0) (2024-08-14) + + +### ⚠ BREAKING CHANGES + +* We renamed all crate names from collaborative-* to co-* for brevity, and also shortened `Collaborative` to `Co` in many types. + +### Code Refactoring + +* renamed crates to co-* ([#161](https://github.com/TaceoLabs/collaborative-circom/issues/161)) ([37f3493](https://github.com/TaceoLabs/collaborative-circom/commit/37f3493b25e41b43bbc8a89e281ae2dcb4b95484)) + ## [0.3.0](https://github.com/TaceoLabs/collaborative-circom/compare/collaborative-groth16-v0.2.1...collaborative-groth16-v0.3.0) (2024-08-14) diff --git a/co-groth16/Cargo.toml b/co-groth16/Cargo.toml index 30b71e9d..cd758bbf 100644 --- a/co-groth16/Cargo.toml +++ b/co-groth16/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "co-groth16" -version = "0.3.0" +version = "0.4.0" publish.workspace = true authors.workspace = true edition.workspace = true diff --git a/co-plonk/CHANGELOG.md b/co-plonk/CHANGELOG.md index 546302a8..33c0e53f 100644 --- a/co-plonk/CHANGELOG.md +++ b/co-plonk/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.2.0](https://github.com/TaceoLabs/collaborative-circom/compare/co-plonk-v0.1.0...co-plonk-v0.2.0) (2024-08-14) + + +### ⚠ BREAKING CHANGES + +* We renamed all crate names from collaborative-* to co-* for brevity, and also shortened `Collaborative` to `Co` in many types. + +### Code Refactoring + +* renamed crates to co-* ([#161](https://github.com/TaceoLabs/collaborative-circom/issues/161)) ([37f3493](https://github.com/TaceoLabs/collaborative-circom/commit/37f3493b25e41b43bbc8a89e281ae2dcb4b95484)) + ## 0.1.0 (2024-08-14) diff --git a/co-plonk/Cargo.toml b/co-plonk/Cargo.toml index 82500989..5cc8bcfd 100644 --- a/co-plonk/Cargo.toml +++ b/co-plonk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "co-plonk" -version = "0.1.0" +version = "0.2.0" publish.workspace = true authors.workspace = true edition.workspace = true diff --git a/tests/Cargo.toml b/tests/Cargo.toml index f0ca19ed..e9dc284a 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tests" -version = "0.1.3" +version = "0.1.4" edition = "2021" publish = false license = "GPL-3.0" # due to circom-mpc-compiler dep @@ -11,12 +11,12 @@ ark-ec = { workspace = true } ark-serialize = { workspace = true } ark-ff = { workspace = true } co-circom-snarks = { version = "0.1.0", path = "../co-circom-snarks" } -co-groth16 = { version = "0.3.0", path = "../co-groth16", features = [ +co-groth16 = { version = "0.4.0", path = "../co-groth16", features = [ "verifier", ] } -co-plonk = { version = "0.1.0", path = "../co-plonk" } -circom-mpc-compiler = { version = "0.4.0", path = "../circom-mpc-compiler" } -circom-mpc-vm = { version = "0.3.0", path = "../circom-mpc-vm" } +co-plonk = { version = "0.2.0", path = "../co-plonk" } +circom-mpc-compiler = { version = "0.5.0", path = "../circom-mpc-compiler" } +circom-mpc-vm = { version = "0.4.0", path = "../circom-mpc-vm" } circom-types = { version = "0.4.0", path = "../circom-types" } criterion = { workspace = true } itertools = { workspace = true }