Skip to content
This repository was archived by the owner on Apr 9, 2024. It is now read-only.

Commit 2f503c4

Browse files
authored
chore: Release 0.27.0 (#548)
1 parent f6c7823 commit 2f503c4

23 files changed

+165
-37
lines changed

.release-please-manifest.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
".": "0.26.1",
3-
"acir": "0.26.1",
4-
"acir_field": "0.26.1",
5-
"acvm": "0.26.1",
6-
"acvm_js": "0.26.1",
7-
"stdlib": "0.26.1",
8-
"brillig": "0.26.1",
9-
"brillig_vm": "0.26.1",
10-
"blackbox_solver": "0.26.1",
11-
"barretenberg_blackbox_solver": "0.26.1"
2+
".": "0.27.0",
3+
"acir": "0.27.0",
4+
"acir_field": "0.27.0",
5+
"acvm": "0.27.0",
6+
"acvm_js": "0.27.0",
7+
"stdlib": "0.27.0",
8+
"brillig": "0.27.0",
9+
"brillig_vm": "0.27.0",
10+
"blackbox_solver": "0.27.0",
11+
"barretenberg_blackbox_solver": "0.27.0"
1212
}

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,28 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.27.0](https://github.com/noir-lang/acvm/compare/root-v0.26.1...root-v0.27.0) (2023-09-19)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* Separate barretenberg solver from generic blackbox solver code ([#554](https://github.com/noir-lang/acvm/issues/554))
14+
15+
### Features
16+
17+
* **acir:** add method on `Circuit` to return assert message ([#551](https://github.com/noir-lang/acvm/issues/551)) ([ee18cde](https://github.com/noir-lang/acvm/commit/ee18cde3537b2be6714061af0bc9ef3793929f7f))
18+
19+
20+
### Bug Fixes
21+
22+
* bump brillig_vm version in release please ([#556](https://github.com/noir-lang/acvm/issues/556)) ([f6c7823](https://github.com/noir-lang/acvm/commit/f6c7823b3be2b85a6ce8dc4af7a3b57ee7a577db))
23+
* use the exact version for the hex crate ([#546](https://github.com/noir-lang/acvm/issues/546)) ([2a546e5](https://github.com/noir-lang/acvm/commit/2a546e5b5cc9f39737ad81f8e96d58313a74eced))
24+
25+
26+
### Miscellaneous Chores
27+
28+
* Separate barretenberg solver from generic blackbox solver code ([#554](https://github.com/noir-lang/acvm/issues/554)) ([a4b9772](https://github.com/noir-lang/acvm/commit/a4b97722a0892fe379ff075e6080675adafdce0e))
29+
830
## [0.26.1](https://github.com/noir-lang/acvm/compare/root-v0.26.0...root-v0.26.1) (2023-09-12)
931

1032

Cargo.lock

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ rust-version = "1.66"
1111
repository = "https://github.com/noir-lang/acvm/"
1212

1313
[workspace.dependencies]
14-
acir = { version = "0.26.1", path = "acir", default-features = false }
15-
acir_field = { version = "0.26.1", path = "acir_field", default-features = false }
16-
stdlib = { package = "acvm_stdlib", version = "0.26.1", path = "stdlib", default-features = false }
17-
brillig = { version = "0.26.1", path = "brillig", default-features = false }
18-
brillig_vm = { version = "0.26.1", path = "brillig_vm", default-features = false }
19-
acvm_blackbox_solver = { version = "0.26.1", path = "blackbox_solver", default-features = false }
14+
acir = { version = "0.27.0", path = "acir", default-features = false }
15+
acir_field = { version = "0.27.0", path = "acir_field", default-features = false }
16+
stdlib = { package = "acvm_stdlib", version = "0.27.0", path = "stdlib", default-features = false }
17+
brillig = { version = "0.27.0", path = "brillig", default-features = false }
18+
brillig_vm = { version = "0.27.0", path = "brillig_vm", default-features = false }
19+
acvm_blackbox_solver = { version = "0.27.0", path = "blackbox_solver", default-features = false }
2020
barretenberg_blackbox_solver = { version = "0.26.1", path = "barretenberg_blackbox_solver", default-features = false }
2121

2222
bincode = "1.3.3"

acir/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.27.0](https://github.com/noir-lang/acvm/compare/acir-v0.26.1...acir-v0.27.0) (2023-09-19)
4+
5+
6+
### Features
7+
8+
* **acir:** add method on `Circuit` to return assert message ([#551](https://github.com/noir-lang/acvm/issues/551)) ([ee18cde](https://github.com/noir-lang/acvm/commit/ee18cde3537b2be6714061af0bc9ef3793929f7f))
9+
310
## [0.26.1](https://github.com/noir-lang/acvm/compare/acir-v0.26.0...acir-v0.26.1) (2023-09-12)
411

512

acir/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "acir"
33
description = "ACIR is the IR that the VM processes, it is analogous to LLVM IR"
4-
version = "0.26.1"
4+
version = "0.27.0"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true

acir_field/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [0.27.0](https://github.com/noir-lang/acvm/compare/acir_field-v0.26.1...acir_field-v0.27.0) (2023-09-19)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Separate barretenberg solver from generic blackbox solver code ([#554](https://github.com/noir-lang/acvm/issues/554))
9+
10+
### Miscellaneous Chores
11+
12+
* Separate barretenberg solver from generic blackbox solver code ([#554](https://github.com/noir-lang/acvm/issues/554)) ([a4b9772](https://github.com/noir-lang/acvm/commit/a4b97722a0892fe379ff075e6080675adafdce0e))
13+
314
## [0.26.1](https://github.com/noir-lang/acvm/compare/acir_field-v0.26.0...acir_field-v0.26.1) (2023-09-12)
415

516

acir_field/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "acir_field"
33
description = "The field implementation being used by ACIR."
4-
version = "0.26.1"
4+
version = "0.27.0"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true

acvm/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [0.27.0](https://github.com/noir-lang/acvm/compare/acvm-v0.26.1...acvm-v0.27.0) (2023-09-19)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Separate barretenberg solver from generic blackbox solver code ([#554](https://github.com/noir-lang/acvm/issues/554))
9+
10+
### Miscellaneous Chores
11+
12+
* Separate barretenberg solver from generic blackbox solver code ([#554](https://github.com/noir-lang/acvm/issues/554)) ([a4b9772](https://github.com/noir-lang/acvm/commit/a4b97722a0892fe379ff075e6080675adafdce0e))
13+
314
## [0.26.1](https://github.com/noir-lang/acvm/compare/acvm-v0.26.0...acvm-v0.26.1) (2023-09-12)
415

516

acvm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "acvm"
33
description = "The virtual machine that processes ACIR given a backend/proof system."
4-
version = "0.26.1"
4+
version = "0.27.0"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true

acvm_js/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## [0.27.0](https://github.com/noir-lang/acvm/compare/acvm_js-v0.26.1...acvm_js-v0.27.0) (2023-09-19)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Separate barretenberg solver from generic blackbox solver code ([#554](https://github.com/noir-lang/acvm/issues/554))
9+
10+
### Miscellaneous Chores
11+
12+
* Separate barretenberg solver from generic blackbox solver code ([#554](https://github.com/noir-lang/acvm/issues/554)) ([a4b9772](https://github.com/noir-lang/acvm/commit/a4b97722a0892fe379ff075e6080675adafdce0e))
13+
14+
15+
### Dependencies
16+
17+
* The following workspace dependencies were updated
18+
* dependencies
19+
* acvm bumped from 0.26.1 to 0.27.0
20+
* barretenberg_blackbox_solver bumped from 0.26.1 to 0.27.0
21+
322
## [0.26.1](https://github.com/noir-lang/acvm/compare/acvm_js-v0.26.0...acvm_js-v0.26.1) (2023-09-12)
423

524

acvm_js/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "acvm_js"
33
description = "Typescript wrapper around the ACVM allowing execution of ACIR code"
4-
version = "0.26.1" # x-release-please-version
4+
version = "0.27.0" # x-release-please-version
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true
@@ -17,8 +17,8 @@ crate-type = ["cdylib"]
1717
cfg-if = "1.0.0"
1818

1919
[target.'cfg(target_arch = "wasm32")'.dependencies]
20-
acvm = { version = "0.26.1", path = "../acvm", default-features = false }
21-
barretenberg_blackbox_solver = { version = "0.26.1", path = "../barretenberg_blackbox_solver", default-features = false }
20+
acvm = { version = "0.27.0", path = "../acvm", default-features = false }
21+
barretenberg_blackbox_solver = { version = "0.27.0", path = "../barretenberg_blackbox_solver", default-features = false }
2222
wasm-bindgen = { version = "0.2.87", features = ["serde-serialize"] }
2323
wasm-bindgen-futures = "0.4.36"
2424
serde = { version = "1.0.136", features = ["derive"] }

acvm_js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@noir-lang/acvm_js",
3-
"version": "0.26.1",
3+
"version": "0.27.0",
44
"private": true,
55
"repository": {
66
"type": "git",
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Changelog
2+
3+
## [0.27.0](https://github.com/noir-lang/acvm/compare/barretenberg_blackbox_solver-v0.26.1...barretenberg_blackbox_solver-v0.27.0) (2023-09-19)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Separate barretenberg solver from generic blackbox solver code ([#554](https://github.com/noir-lang/acvm/issues/554))
9+
10+
### Bug Fixes
11+
12+
* Empty commit to trigger release-please ([e8f0748](https://github.com/noir-lang/acvm/commit/e8f0748042ef505d59ab63266d3c36c5358ee30d))
13+
14+
15+
### Miscellaneous Chores
16+
17+
* Separate barretenberg solver from generic blackbox solver code ([#554](https://github.com/noir-lang/acvm/issues/554)) ([a4b9772](https://github.com/noir-lang/acvm/commit/a4b97722a0892fe379ff075e6080675adafdce0e))

barretenberg_blackbox_solver/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "barretenberg_blackbox_solver"
33
description = "A wrapper around a barretenberg WASM binary to execute black box functions for which there is no rust implementation"
4-
version = "0.26.1"
4+
version = "0.27.0"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true

blackbox_solver/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [0.27.0](https://github.com/noir-lang/acvm/compare/acvm_blackbox_solver-v0.26.1...acvm_blackbox_solver-v0.27.0) (2023-09-19)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Separate barretenberg solver from generic blackbox solver code ([#554](https://github.com/noir-lang/acvm/issues/554))
9+
10+
### Bug Fixes
11+
12+
* use the exact version for the hex crate ([#546](https://github.com/noir-lang/acvm/issues/546)) ([2a546e5](https://github.com/noir-lang/acvm/commit/2a546e5b5cc9f39737ad81f8e96d58313a74eced))
13+
14+
15+
### Miscellaneous Chores
16+
17+
* Separate barretenberg solver from generic blackbox solver code ([#554](https://github.com/noir-lang/acvm/issues/554)) ([a4b9772](https://github.com/noir-lang/acvm/commit/a4b97722a0892fe379ff075e6080675adafdce0e))
18+
319
## [0.26.1](https://github.com/noir-lang/acvm/compare/acvm_blackbox_solver-v0.26.0...acvm_blackbox_solver-v0.26.1) (2023-09-12)
420

521

blackbox_solver/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "acvm_blackbox_solver"
33
description = "A solver for the blackbox functions found in ACIR and Brillig"
4-
version = "0.26.1"
4+
version = "0.27.0"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true

brillig/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.27.0](https://github.com/noir-lang/acvm/compare/brillig-v0.26.1...brillig-v0.27.0) (2023-09-19)
4+
5+
6+
### Miscellaneous Chores
7+
8+
* **brillig:** Synchronize acvm versions
9+
310
## [0.26.1](https://github.com/noir-lang/acvm/compare/brillig-v0.26.0...brillig-v0.26.1) (2023-09-12)
411

512

brillig/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "brillig"
33
description = "Brillig is the bytecode ACIR uses for non-determinism."
4-
version = "0.26.1"
4+
version = "0.27.0"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true

brillig_vm/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [0.27.0](https://github.com/noir-lang/acvm/compare/brillig_vm-v0.26.1...brillig_vm-v0.27.0) (2023-09-19)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Separate barretenberg solver from generic blackbox solver code ([#554](https://github.com/noir-lang/acvm/issues/554))
9+
10+
### Miscellaneous Chores
11+
12+
* Separate barretenberg solver from generic blackbox solver code ([#554](https://github.com/noir-lang/acvm/issues/554)) ([a4b9772](https://github.com/noir-lang/acvm/commit/a4b97722a0892fe379ff075e6080675adafdce0e))
13+
314
## [0.26.1](https://github.com/noir-lang/acvm/compare/brillig_vm-v0.26.0...brillig_vm-v0.26.1) (2023-09-12)
415

516

brillig_vm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "brillig_vm"
33
description = "The virtual machine that processes Brillig bytecode, used to introduce non-determinism to the ACVM"
4-
version = "0.26.1"
4+
version = "0.27.0"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true

stdlib/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.27.0](https://github.com/noir-lang/acvm/compare/acvm_stdlib-v0.26.1...acvm_stdlib-v0.27.0) (2023-09-19)
4+
5+
6+
### Miscellaneous Chores
7+
8+
* **acvm_stdlib:** Synchronize acvm versions
9+
310
## [0.26.1](https://github.com/noir-lang/acvm/compare/acvm_stdlib-v0.26.0...acvm_stdlib-v0.26.1) (2023-09-12)
411

512

0 commit comments

Comments
 (0)