Skip to content

Commit

Permalink
chore: release main (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
taceo-bot committed Aug 14, 2024
1 parent 560f094 commit af45a47
Show file tree
Hide file tree
Showing 12 changed files with 96 additions and 22 deletions.
12 changes: 6 additions & 6 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -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"
}
20 changes: 20 additions & 0 deletions circom-mpc-compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
6 changes: 3 additions & 3 deletions circom-mpc-compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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" }
Expand All @@ -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
11 changes: 11 additions & 0 deletions circom-mpc-vm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion circom-mpc-vm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
21 changes: 21 additions & 0 deletions co-circom/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
10 changes: 5 additions & 5 deletions co-circom/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "co-circom"
version = "0.3.0"
version = "0.4.0"

publish.workspace = true
authors.workspace = true
Expand All @@ -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" }
Expand Down
11 changes: 11 additions & 0 deletions co-groth16/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion co-groth16/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
11 changes: 11 additions & 0 deletions co-plonk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion co-plonk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
10 changes: 5 additions & 5 deletions tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 }
Expand Down

0 comments on commit af45a47

Please sign in to comment.