From d40a10ea3c3c24063903437816b73207d9d5638f Mon Sep 17 00:00:00 2001 From: kevaundray Date: Thu, 7 Sep 2023 21:17:11 +0100 Subject: [PATCH] chore: Release 0.26.0 (#533) --- .release-please-manifest.json | 18 +++++++++--------- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 16 ++++++++-------- Cargo.toml | 10 +++++----- acir/CHANGELOG.md | 11 +++++++++++ acir/Cargo.toml | 2 +- acir_field/CHANGELOG.md | 7 +++++++ acir_field/Cargo.toml | 2 +- acvm/CHANGELOG.md | 18 ++++++++++++++++++ acvm/Cargo.toml | 4 ++-- acvm_js/CHANGELOG.md | 18 ++++++++++++++++++ acvm_js/Cargo.toml | 4 ++-- acvm_js/package.json | 2 +- blackbox_solver/CHANGELOG.md | 11 +++++++++++ blackbox_solver/Cargo.toml | 2 +- brillig/CHANGELOG.md | 11 +++++++++++ brillig/Cargo.toml | 2 +- brillig_vm/CHANGELOG.md | 11 +++++++++++ brillig_vm/Cargo.toml | 2 +- stdlib/CHANGELOG.md | 7 +++++++ stdlib/Cargo.toml | 2 +- 21 files changed, 138 insertions(+), 33 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 42acf978..98bec06b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,11 +1,11 @@ { - ".": "0.25.0", - "acir": "0.25.0", - "acir_field": "0.25.0", - "acvm": "0.25.0", - "acvm_js": "0.25.0", - "stdlib": "0.25.0", - "brillig": "0.25.0", - "brillig_vm": "0.25.0", - "blackbox_solver": "0.25.0" + ".": "0.26.0", + "acir": "0.26.0", + "acir_field": "0.26.0", + "acvm": "0.26.0", + "acvm_js": "0.26.0", + "stdlib": "0.26.0", + "brillig": "0.26.0", + "brillig_vm": "0.26.0", + "blackbox_solver": "0.26.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 947b4381..96053d05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.26.0](https://github.com/noir-lang/acvm/compare/root-v0.25.0...root-v0.26.0) (2023-09-07) + + +### ⚠ BREAKING CHANGES + +* Add a low and high limb to scalar mul opcode ([#532](https://github.com/noir-lang/acvm/issues/532)) + +### Miscellaneous Chores + +* Add a low and high limb to scalar mul opcode ([#532](https://github.com/noir-lang/acvm/issues/532)) ([b054f66](https://github.com/noir-lang/acvm/commit/b054f66be9c73d4e02dbecdab80874a907f19242)) + ## [0.25.0](https://github.com/noir-lang/acvm/compare/root-v0.24.1...root-v0.25.0) (2023-09-04) diff --git a/Cargo.lock b/Cargo.lock index 2b256c3f..8bf7a0e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "acir" -version = "0.25.0" +version = "0.26.0" dependencies = [ "acir_field", "bincode", @@ -20,7 +20,7 @@ dependencies = [ [[package]] name = "acir_field" -version = "0.25.0" +version = "0.26.0" dependencies = [ "ark-bls12-381", "ark-bn254", @@ -33,7 +33,7 @@ dependencies = [ [[package]] name = "acvm" -version = "0.25.0" +version = "0.26.0" dependencies = [ "acir", "acvm_blackbox_solver", @@ -50,7 +50,7 @@ dependencies = [ [[package]] name = "acvm_blackbox_solver" -version = "0.25.0" +version = "0.26.0" dependencies = [ "acir", "blake2", @@ -72,7 +72,7 @@ dependencies = [ [[package]] name = "acvm_js" -version = "0.25.0" +version = "0.26.0" dependencies = [ "acvm", "build-data", @@ -92,7 +92,7 @@ dependencies = [ [[package]] name = "acvm_stdlib" -version = "0.25.0" +version = "0.26.0" dependencies = [ "acir", ] @@ -400,7 +400,7 @@ dependencies = [ [[package]] name = "brillig" -version = "0.25.0" +version = "0.26.0" dependencies = [ "acir_field", "serde", @@ -408,7 +408,7 @@ dependencies = [ [[package]] name = "brillig_vm" -version = "0.25.0" +version = "0.26.0" dependencies = [ "acir", "acvm_blackbox_solver", diff --git a/Cargo.toml b/Cargo.toml index 26d7ea00..bc246397 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,11 +11,11 @@ rust-version = "1.66" repository = "https://github.com/noir-lang/acvm/" [workspace.dependencies] -acir = { version = "0.25.0", path = "acir", default-features = false } -acir_field = { version = "0.25.0", path = "acir_field", default-features = false } -stdlib = { package = "acvm_stdlib", version = "0.25.0", path = "stdlib", default-features = false } -brillig = { version = "0.25.0", path = "brillig", default-features = false } -blackbox_solver = { package = "acvm_blackbox_solver", version = "0.25.0", path = "blackbox_solver", default-features = false } +acir = { version = "0.26.0", path = "acir", default-features = false } +acir_field = { version = "0.26.0", path = "acir_field", default-features = false } +stdlib = { package = "acvm_stdlib", version = "0.26.0", path = "stdlib", default-features = false } +brillig = { version = "0.26.0", path = "brillig", default-features = false } +blackbox_solver = { package = "acvm_blackbox_solver", version = "0.26.0", path = "blackbox_solver", default-features = false } bincode = "1.3.3" diff --git a/acir/CHANGELOG.md b/acir/CHANGELOG.md index 3e9e92b3..e9a471ab 100644 --- a/acir/CHANGELOG.md +++ b/acir/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.26.0](https://github.com/noir-lang/acvm/compare/acir-v0.25.0...acir-v0.26.0) (2023-09-07) + + +### ⚠ BREAKING CHANGES + +* Add a low and high limb to scalar mul opcode ([#532](https://github.com/noir-lang/acvm/issues/532)) + +### Miscellaneous Chores + +* Add a low and high limb to scalar mul opcode ([#532](https://github.com/noir-lang/acvm/issues/532)) ([b054f66](https://github.com/noir-lang/acvm/commit/b054f66be9c73d4e02dbecdab80874a907f19242)) + ## [0.25.0](https://github.com/noir-lang/acvm/compare/acir-v0.24.1...acir-v0.25.0) (2023-09-04) diff --git a/acir/Cargo.toml b/acir/Cargo.toml index a9000cd1..2e82088b 100644 --- a/acir/Cargo.toml +++ b/acir/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "acir" description = "ACIR is the IR that the VM processes, it is analogous to LLVM IR" -version = "0.25.0" +version = "0.26.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/acir_field/CHANGELOG.md b/acir_field/CHANGELOG.md index e0d6bfc7..867d19f9 100644 --- a/acir_field/CHANGELOG.md +++ b/acir_field/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.26.0](https://github.com/noir-lang/acvm/compare/acir_field-v0.25.0...acir_field-v0.26.0) (2023-09-07) + + +### Miscellaneous Chores + +* **acir_field:** Synchronize acvm versions + ## [0.25.0](https://github.com/noir-lang/acvm/compare/acir_field-v0.24.1...acir_field-v0.25.0) (2023-09-04) diff --git a/acir_field/Cargo.toml b/acir_field/Cargo.toml index af12a099..bf7f9fda 100644 --- a/acir_field/Cargo.toml +++ b/acir_field/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "acir_field" description = "The field implementation being used by ACIR." -version = "0.25.0" +version = "0.26.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/acvm/CHANGELOG.md b/acvm/CHANGELOG.md index 2f5cdcb3..747cc713 100644 --- a/acvm/CHANGELOG.md +++ b/acvm/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [0.26.0](https://github.com/noir-lang/acvm/compare/acvm-v0.25.0...acvm-v0.26.0) (2023-09-07) + + +### ⚠ BREAKING CHANGES + +* Add a low and high limb to scalar mul opcode ([#532](https://github.com/noir-lang/acvm/issues/532)) + +### Miscellaneous Chores + +* Add a low and high limb to scalar mul opcode ([#532](https://github.com/noir-lang/acvm/issues/532)) ([b054f66](https://github.com/noir-lang/acvm/commit/b054f66be9c73d4e02dbecdab80874a907f19242)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * brillig_vm bumped from 0.25.0 to 0.26.0 + ## [0.25.0](https://github.com/noir-lang/acvm/compare/acvm-v0.24.1...acvm-v0.25.0) (2023-09-04) diff --git a/acvm/Cargo.toml b/acvm/Cargo.toml index aeaa6fc4..c3a8cafb 100644 --- a/acvm/Cargo.toml +++ b/acvm/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "acvm" description = "The virtual machine that processes ACIR given a backend/proof system." -version = "0.25.0" +version = "0.26.0" authors.workspace = true edition.workspace = true license.workspace = true @@ -17,7 +17,7 @@ thiserror.workspace = true acir.workspace = true stdlib.workspace = true -brillig_vm = { version = "0.25.0", path = "../brillig_vm", default-features = false } +brillig_vm = { version = "0.26.0", path = "../brillig_vm", default-features = false } blackbox_solver.workspace = true indexmap = "1.7.0" diff --git a/acvm_js/CHANGELOG.md b/acvm_js/CHANGELOG.md index 71dd2e96..04a06917 100644 --- a/acvm_js/CHANGELOG.md +++ b/acvm_js/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [0.26.0](https://github.com/noir-lang/acvm/compare/acvm_js-v0.25.0...acvm_js-v0.26.0) (2023-09-07) + + +### ⚠ BREAKING CHANGES + +* Add a low and high limb to scalar mul opcode ([#532](https://github.com/noir-lang/acvm/issues/532)) + +### Miscellaneous Chores + +* Add a low and high limb to scalar mul opcode ([#532](https://github.com/noir-lang/acvm/issues/532)) ([b054f66](https://github.com/noir-lang/acvm/commit/b054f66be9c73d4e02dbecdab80874a907f19242)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * acvm bumped from 0.25.0 to 0.26.0 + ## [0.25.0](https://github.com/noir-lang/acvm/compare/acvm_js-v0.24.1...acvm_js-v0.25.0) (2023-09-04) diff --git a/acvm_js/Cargo.toml b/acvm_js/Cargo.toml index bf81584f..655b33df 100644 --- a/acvm_js/Cargo.toml +++ b/acvm_js/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "acvm_js" description = "Typescript wrapper around the ACVM allowing execution of ACIR code" -version = "0.25.0" # x-release-please-version +version = "0.26.0" # x-release-please-version authors.workspace = true edition.workspace = true license.workspace = true @@ -17,7 +17,7 @@ crate-type = ["cdylib"] cfg-if = "1.0.0" [target.'cfg(target_arch = "wasm32")'.dependencies] -acvm = { version = "0.25.0", path = "../acvm", default-features = false } +acvm = { version = "0.26.0", path = "../acvm", default-features = false } wasm-bindgen = { version = "0.2.87", features = ["serde-serialize"] } wasm-bindgen-futures = "0.4.36" serde = { version = "1.0.136", features = ["derive"] } diff --git a/acvm_js/package.json b/acvm_js/package.json index eb40967d..e8eb6d66 100644 --- a/acvm_js/package.json +++ b/acvm_js/package.json @@ -1,6 +1,6 @@ { "name": "@noir-lang/acvm_js", - "version": "0.25.0", + "version": "0.26.0", "private": true, "repository": { "type": "git", diff --git a/blackbox_solver/CHANGELOG.md b/blackbox_solver/CHANGELOG.md index 773dac21..41b96ace 100644 --- a/blackbox_solver/CHANGELOG.md +++ b/blackbox_solver/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.26.0](https://github.com/noir-lang/acvm/compare/acvm_blackbox_solver-v0.25.0...acvm_blackbox_solver-v0.26.0) (2023-09-07) + + +### ⚠ BREAKING CHANGES + +* Add a low and high limb to scalar mul opcode ([#532](https://github.com/noir-lang/acvm/issues/532)) + +### Miscellaneous Chores + +* Add a low and high limb to scalar mul opcode ([#532](https://github.com/noir-lang/acvm/issues/532)) ([b054f66](https://github.com/noir-lang/acvm/commit/b054f66be9c73d4e02dbecdab80874a907f19242)) + ## [0.25.0](https://github.com/noir-lang/acvm/compare/acvm_blackbox_solver-v0.24.1...acvm_blackbox_solver-v0.25.0) (2023-09-04) diff --git a/blackbox_solver/Cargo.toml b/blackbox_solver/Cargo.toml index fed03936..275c4dd9 100644 --- a/blackbox_solver/Cargo.toml +++ b/blackbox_solver/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "acvm_blackbox_solver" description = "A solver for the blackbox functions found in ACIR and Brillig" -version = "0.25.0" +version = "0.26.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/brillig/CHANGELOG.md b/brillig/CHANGELOG.md index 293e75b9..ccb971ba 100644 --- a/brillig/CHANGELOG.md +++ b/brillig/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.26.0](https://github.com/noir-lang/acvm/compare/brillig-v0.25.0...brillig-v0.26.0) (2023-09-07) + + +### ⚠ BREAKING CHANGES + +* Add a low and high limb to scalar mul opcode ([#532](https://github.com/noir-lang/acvm/issues/532)) + +### Miscellaneous Chores + +* Add a low and high limb to scalar mul opcode ([#532](https://github.com/noir-lang/acvm/issues/532)) ([b054f66](https://github.com/noir-lang/acvm/commit/b054f66be9c73d4e02dbecdab80874a907f19242)) + ## [0.25.0](https://github.com/noir-lang/acvm/compare/brillig-v0.24.1...brillig-v0.25.0) (2023-09-04) diff --git a/brillig/Cargo.toml b/brillig/Cargo.toml index cde0a510..d26a2165 100644 --- a/brillig/Cargo.toml +++ b/brillig/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "brillig" description = "Brillig is the bytecode ACIR uses for non-determinism." -version = "0.25.0" +version = "0.26.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/brillig_vm/CHANGELOG.md b/brillig_vm/CHANGELOG.md index 91db04af..2f2bc21b 100644 --- a/brillig_vm/CHANGELOG.md +++ b/brillig_vm/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.26.0](https://github.com/noir-lang/acvm/compare/brillig_vm-v0.25.0...brillig_vm-v0.26.0) (2023-09-07) + + +### ⚠ BREAKING CHANGES + +* Add a low and high limb to scalar mul opcode ([#532](https://github.com/noir-lang/acvm/issues/532)) + +### Miscellaneous Chores + +* Add a low and high limb to scalar mul opcode ([#532](https://github.com/noir-lang/acvm/issues/532)) ([b054f66](https://github.com/noir-lang/acvm/commit/b054f66be9c73d4e02dbecdab80874a907f19242)) + ## [0.25.0](https://github.com/noir-lang/acvm/compare/brillig_vm-v0.24.1...brillig_vm-v0.25.0) (2023-09-04) diff --git a/brillig_vm/Cargo.toml b/brillig_vm/Cargo.toml index 6c06fcfe..57555421 100644 --- a/brillig_vm/Cargo.toml +++ b/brillig_vm/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "brillig_vm" description = "The virtual machine that processes Brillig bytecode, used to introduce non-determinism to the ACVM" -version = "0.25.0" +version = "0.26.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/stdlib/CHANGELOG.md b/stdlib/CHANGELOG.md index 87c8846f..04e50fb2 100644 --- a/stdlib/CHANGELOG.md +++ b/stdlib/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.26.0](https://github.com/noir-lang/acvm/compare/acvm_stdlib-v0.25.0...acvm_stdlib-v0.26.0) (2023-09-07) + + +### Miscellaneous Chores + +* **acvm_stdlib:** Synchronize acvm versions + ## [0.25.0](https://github.com/noir-lang/acvm/compare/acvm_stdlib-v0.24.1...acvm_stdlib-v0.25.0) (2023-09-04) diff --git a/stdlib/Cargo.toml b/stdlib/Cargo.toml index ddd5cfdf..28fd418c 100644 --- a/stdlib/Cargo.toml +++ b/stdlib/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "acvm_stdlib" description = "The ACVM standard library." -version = "0.25.0" +version = "0.26.0" authors.workspace = true edition.workspace = true license.workspace = true