Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"co-circom/circom-mpc-compiler": "0.10.0",
"co-circom/circom-mpc-vm": "0.9.0",
"co-circom/co-circom-types": "0.6.0",
"co-circom/co-circom": "0.10.0",
"co-circom/co-groth16": "0.10.0",
"co-circom/co-plonk": "0.7.0",
"co-noir/co-noir-common": "0.2.0",
"co-noir/co-acvm": "0.7.0",
"co-noir/co-builder": "0.5.0",
"co-noir/co-brillig": "0.4.0",
"co-circom/circom-mpc-compiler": "0.11.0",
"co-circom/circom-mpc-vm": "0.10.0",
"co-circom/co-circom-types": "0.6.1",
"co-circom/co-circom": "0.11.0",
"co-circom/co-groth16": "0.11.0",
"co-circom/co-plonk": "0.7.1",
"co-noir/co-noir-common": "0.3.0",
"co-noir/co-acvm": "0.8.0",
"co-noir/co-builder": "0.6.0",
"co-noir/co-brillig": "0.5.0",
"co-noir/co-goblin": "0.1.0",
"co-noir/co-noir": "0.7.0",
"co-noir/co-ultrahonk": "0.6.0",
"co-noir/co-noir": "0.8.0",
"co-noir/co-ultrahonk": "0.7.0",
"co-noir/goblin": "0.1.0",
"co-noir/ultrahonk": "0.6.0",
"mpc-core": "0.10.0",
"mpc-net": "0.5.0",
"tests": "0.1.12",
"co-noir/ultrahonk": "0.7.0",
"mpc-core": "0.11.0",
"mpc-net": "0.6.0",
"tests": "0.1.13",
"co-noir/honk-verifier": "0.1.0",
"co-noir/co-noir-types": "0.1.1",
"co-noir/noir-types": "0.1.1"
"co-noir/co-noir-types": "0.1.2",
"co-noir/noir-types": "0.1.2"
}
36 changes: 18 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions co-circom/circom-mpc-compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@
* co-groth16 bumped from 0.5.0 to 0.5.1
* mpc-core bumped from 0.4.0 to 0.5.0

## [0.11.0](https://github.com/TaceoLabs/co-snarks/compare/circom-mpc-compiler-v0.10.0...circom-mpc-compiler-v0.11.0) (2026-05-08)


### Features

* add debug flag for circom compiler ([2a6fe21](https://github.com/TaceoLabs/co-snarks/commit/2a6fe217d3771e26012198dc90c5e74fa79d7f5b))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* circom-mpc-vm bumped from 0.9.0 to 0.10.0
* dev-dependencies
* co-groth16 bumped from 0.10.0 to 0.11.0
* mpc-core bumped from 0.10.0 to 0.11.0

## [0.10.0](https://github.com/TaceoLabs/co-snarks/compare/circom-mpc-compiler-v0.9.1...circom-mpc-compiler-v0.10.0) (2025-11-06)


Expand Down
8 changes: 4 additions & 4 deletions co-circom/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.10.0"
version = "0.11.0"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
Expand All @@ -14,7 +14,7 @@ readme.workspace = true
ark-ec.workspace = true
ark-ff.workspace = true
circom-types.workspace = true
circom-mpc-vm = { version = "0.9.0", path = "../circom-mpc-vm" }
circom-mpc-vm = { version = "0.10.0", path = "../circom-mpc-vm" }
clap.workspace = true
eyre.workspace = true
itertools.workspace = true
Expand All @@ -31,6 +31,6 @@ circom-type_analysis = { version = "2.2.2", git = "https://github.com/TaceoLabs/

[dev-dependencies]
ark-bn254.workspace = true
co-groth16 = { version = "0.10.0", path = "../co-groth16" }
mpc-core = { version = "0.10.0", path = "../../mpc-core" }
co-groth16 = { version = "0.11.0", path = "../co-groth16" }
mpc-core = { version = "0.11.0", path = "../../mpc-core" }
tracing.workspace = true
24 changes: 24 additions & 0 deletions co-circom/circom-mpc-vm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,30 @@
* co-circom-snarks bumped from 0.1.1 to 0.1.2
* mpc-core bumped from 0.4.0 to 0.5.0

## [0.10.0](https://github.com/TaceoLabs/co-snarks/compare/circom-mpc-vm-v0.9.0...circom-mpc-vm-v0.10.0) (2026-05-08)


### ⚠ BREAKING CHANGES

* Batched and plain Poseidon trace computation for Circom ([#502](https://github.com/TaceoLabs/co-snarks/issues/502))

### Features

* add debug flag for circom compiler ([2a6fe21](https://github.com/TaceoLabs/co-snarks/commit/2a6fe217d3771e26012198dc90c5e74fa79d7f5b))
* add Poseidon2 accelerator for circom ([d6eab3b](https://github.com/TaceoLabs/co-snarks/commit/d6eab3b4bf36b7c6ace6c81bf9842d2762f92074))
* Allow to specify component accelerators for the MPC VM ([b63f44d](https://github.com/TaceoLabs/co-snarks/commit/b63f44d171627d7923a7073b26b8dae6cbba065b))
* Batched and plain Poseidon trace computation for Circom ([#502](https://github.com/TaceoLabs/co-snarks/issues/502)) ([c243d3b](https://github.com/TaceoLabs/co-snarks/commit/c243d3b6d5214adf171cd7dcdb2bba027bf6940c))
* t=16 for Poseidon2 accelerator ([4daa904](https://github.com/TaceoLabs/co-snarks/commit/4daa9049f943d534b7b718bd9d2c1a86d48128c3))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* co-circom-types bumped from 0.6.0 to 0.6.1
* mpc-core bumped from 0.10.0 to 0.11.0
* mpc-net bumped from 0.5.0 to 0.6.0

## [0.9.0](https://github.com/TaceoLabs/co-snarks/compare/circom-mpc-vm-v0.8.0...circom-mpc-vm-v0.9.0) (2025-11-06)


Expand Down
8 changes: 4 additions & 4 deletions co-circom/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.9.0"
version = "0.10.0"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
Expand All @@ -16,11 +16,11 @@ ark-serialize.workspace = true
bincode.workspace = true
num-bigint.workspace = true
num-traits.workspace = true
co-circom-types = { version = "0.6.0", path = "../co-circom-types" }
co-circom-types = { version = "0.6.1", path = "../co-circom-types" }
eyre.workspace = true
itertools.workspace = true
mpc-core = { version = "0.10.0", path = "../../mpc-core" }
mpc-net = { version = "0.5.0", path = "../../mpc-net" }
mpc-core = { version = "0.11.0", path = "../../mpc-core" }
mpc-net = { version = "0.6.0", path = "../../mpc-net" }
serde.workspace = true
tracing.workspace = true

Expand Down
9 changes: 9 additions & 0 deletions co-circom/co-circom-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

## renamed to co-circom-types

## [0.6.1](https://github.com/TaceoLabs/co-snarks/compare/co-circom-types-v0.6.0...co-circom-types-v0.6.1) (2026-05-08)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* mpc-core bumped from 0.10.0 to 0.11.0

## [0.6.0](https://github.com/TaceoLabs/co-snarks/compare/co-circom-types-v0.5.0...co-circom-types-v0.6.0) (2025-11-06)


Expand Down
4 changes: 2 additions & 2 deletions co-circom/co-circom-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "co-circom-types"
version = "0.6.0"
version = "0.6.1"
publish.workspace = true
authors.workspace = true
edition.workspace = true
Expand All @@ -16,7 +16,7 @@ ark-ff = { workspace = true }
ark-serialize = { workspace = true }
circom-types.workspace = true
eyre = { workspace = true }
mpc-core = { version = "0.10.0", path = "../../mpc-core" }
mpc-core = { version = "0.11.0", path = "../../mpc-core" }
num-traits = { workspace = true }
num-bigint = { workspace = true }
rand = { workspace = true }
Expand Down
21 changes: 21 additions & 0 deletions co-circom/co-circom/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,27 @@
* co-plonk bumped from 0.3.0 to 0.3.1
* mpc-core bumped from 0.4.0 to 0.5.0

## [0.11.0](https://github.com/TaceoLabs/co-snarks/compare/co-circom-v0.10.0...co-circom-v0.11.0) (2026-05-08)


### Features

* add Poseidon2 accelerator for circom ([d6eab3b](https://github.com/TaceoLabs/co-snarks/commit/d6eab3b4bf36b7c6ace6c81bf9842d2762f92074))
* t=16 for Poseidon2 accelerator ([4daa904](https://github.com/TaceoLabs/co-snarks/commit/4daa9049f943d534b7b718bd9d2c1a86d48128c3))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* circom-mpc-compiler bumped from 0.10.0 to 0.11.0
* circom-mpc-vm bumped from 0.9.0 to 0.10.0
* co-circom-types bumped from 0.6.0 to 0.6.1
* co-groth16 bumped from 0.10.0 to 0.11.0
* co-plonk bumped from 0.7.0 to 0.7.1
* mpc-core bumped from 0.10.0 to 0.11.0
* mpc-net bumped from 0.5.0 to 0.6.0

## [0.10.0](https://github.com/TaceoLabs/co-snarks/compare/co-circom-v0.9.0...co-circom-v0.10.0) (2025-11-06)


Expand Down
Loading
Loading