From a7773a2379d21a6be2103f746ba01bc83d6668f4 Mon Sep 17 00:00:00 2001 From: kevaundray Date: Thu, 13 Jul 2023 00:48:11 +0100 Subject: [PATCH] chore: Release 0.18.2 (#432) --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ Cargo.toml | 10 +++++----- acir/CHANGELOG.md | 7 +++++++ acir/Cargo.toml | 2 +- acir_field/CHANGELOG.md | 7 +++++++ acir_field/Cargo.toml | 2 +- acvm/CHANGELOG.md | 15 +++++++++++++++ acvm/Cargo.toml | 4 ++-- blackbox_solver/CHANGELOG.md | 7 +++++++ blackbox_solver/Cargo.toml | 2 +- brillig/CHANGELOG.md | 7 +++++++ brillig/Cargo.toml | 2 +- brillig_vm/CHANGELOG.md | 7 +++++++ brillig_vm/Cargo.toml | 2 +- stdlib/CHANGELOG.md | 7 +++++++ stdlib/Cargo.toml | 2 +- 17 files changed, 79 insertions(+), 14 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index aca5957b3..f7cdbb8d4 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.18.1","acir":"0.18.1","acir_field":"0.18.1","acvm":"0.18.1","stdlib":"0.18.1","brillig":"0.18.1","brillig_vm":"0.18.1","blackbox_solver":"0.18.1"} \ No newline at end of file +{".":"0.18.2","acir":"0.18.2","acir_field":"0.18.2","acvm":"0.18.2","stdlib":"0.18.2","brillig":"0.18.2","brillig_vm":"0.18.2","blackbox_solver":"0.18.2"} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 36b986baf..f4cbd2d09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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.18.2](https://github.com/noir-lang/acvm/compare/root-v0.18.1...root-v0.18.2) (2023-07-12) + + +### Features + +* **acvm:** reexport `blackbox_solver` crate from `acvm` ([#431](https://github.com/noir-lang/acvm/issues/431)) ([517e942](https://github.com/noir-lang/acvm/commit/517e942b732d7107f6e064c6791917d1508229b3)) +* **stdlib:** Add fallback implementation of `Blake2s` black box function ([#424](https://github.com/noir-lang/acvm/issues/424)) ([982d940](https://github.com/noir-lang/acvm/commit/982d94087d46092ce7a5e94dbd7e732195f58e42)) + ## [0.18.1](https://github.com/noir-lang/acvm/compare/root-v0.18.0...root-v0.18.1) (2023-07-12) diff --git a/Cargo.toml b/Cargo.toml index f45b9f362..c335917bc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,11 +10,11 @@ rust-version = "1.66" repository = "https://github.com/noir-lang/acvm/" [workspace.dependencies] -acir = { version = "0.18.1", path = "acir", default-features = false } -acir_field = { version = "0.18.1", path = "acir_field", default-features = false } -stdlib = { package = "acvm_stdlib", version = "0.18.1", path = "stdlib", default-features = false } -brillig = { version = "0.18.1", path = "brillig", default-features = false } -blackbox_solver = { package = "acvm_blackbox_solver", version = "0.18.1", path = "blackbox_solver", default-features = false } +acir = { version = "0.18.2", path = "acir", default-features = false } +acir_field = { version = "0.18.2", path = "acir_field", default-features = false } +stdlib = { package = "acvm_stdlib", version = "0.18.2", path = "stdlib", default-features = false } +brillig = { version = "0.18.2", path = "brillig", default-features = false } +blackbox_solver = { package = "acvm_blackbox_solver", version = "0.18.2", path = "blackbox_solver", default-features = false } rmp-serde = "1.1.0" diff --git a/acir/CHANGELOG.md b/acir/CHANGELOG.md index 32d3b94a1..4e9d0f2e8 100644 --- a/acir/CHANGELOG.md +++ b/acir/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.18.2](https://github.com/noir-lang/acvm/compare/acir-v0.18.1...acir-v0.18.2) (2023-07-12) + + +### Miscellaneous Chores + +* **acir:** Synchronize acvm versions + ## [0.18.1](https://github.com/noir-lang/acvm/compare/acir-v0.18.0...acir-v0.18.1) (2023-07-12) diff --git a/acir/Cargo.toml b/acir/Cargo.toml index 7a66a449c..47e4906ac 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.18.1" +version = "0.18.2" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/acir_field/CHANGELOG.md b/acir_field/CHANGELOG.md index 2a0b0f8ee..fbbe40137 100644 --- a/acir_field/CHANGELOG.md +++ b/acir_field/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.18.2](https://github.com/noir-lang/acvm/compare/acir_field-v0.18.1...acir_field-v0.18.2) (2023-07-12) + + +### Miscellaneous Chores + +* **acir_field:** Synchronize acvm versions + ## [0.18.1](https://github.com/noir-lang/acvm/compare/acir_field-v0.18.0...acir_field-v0.18.1) (2023-07-12) diff --git a/acir_field/Cargo.toml b/acir_field/Cargo.toml index d8f02950e..89beef6c2 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.18.1" +version = "0.18.2" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/acvm/CHANGELOG.md b/acvm/CHANGELOG.md index 0bea9bc7b..456239a5a 100644 --- a/acvm/CHANGELOG.md +++ b/acvm/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [0.18.2](https://github.com/noir-lang/acvm/compare/acvm-v0.18.1...acvm-v0.18.2) (2023-07-12) + + +### Features + +* **acvm:** reexport `blackbox_solver` crate from `acvm` ([#431](https://github.com/noir-lang/acvm/issues/431)) ([517e942](https://github.com/noir-lang/acvm/commit/517e942b732d7107f6e064c6791917d1508229b3)) +* **stdlib:** Add fallback implementation of `Blake2s` black box function ([#424](https://github.com/noir-lang/acvm/issues/424)) ([982d940](https://github.com/noir-lang/acvm/commit/982d94087d46092ce7a5e94dbd7e732195f58e42)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * brillig_vm bumped from 0.18.1 to 0.18.2 + ## [0.18.1](https://github.com/noir-lang/acvm/compare/acvm-v0.18.0...acvm-v0.18.1) (2023-07-12) diff --git a/acvm/Cargo.toml b/acvm/Cargo.toml index 46328f42b..5e800d07b 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.18.1" +version = "0.18.2" authors.workspace = true edition.workspace = true license.workspace = true @@ -18,7 +18,7 @@ rmp-serde.workspace = true acir.workspace = true stdlib.workspace = true -brillig_vm = { version = "0.18.1", path = "../brillig_vm", default-features = false } +brillig_vm = { version = "0.18.2", path = "../brillig_vm", default-features = false } blackbox_solver.workspace = true indexmap = "1.7.0" diff --git a/blackbox_solver/CHANGELOG.md b/blackbox_solver/CHANGELOG.md index ce559aef1..6a3f36d10 100644 --- a/blackbox_solver/CHANGELOG.md +++ b/blackbox_solver/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.18.2](https://github.com/noir-lang/acvm/compare/acvm_blackbox_solver-v0.18.1...acvm_blackbox_solver-v0.18.2) (2023-07-12) + + +### Miscellaneous Chores + +* **acvm_blackbox_solver:** Synchronize acvm versions + ## [0.18.1](https://github.com/noir-lang/acvm/compare/acvm_blackbox_solver-v0.18.0...acvm_blackbox_solver-v0.18.1) (2023-07-12) diff --git a/blackbox_solver/Cargo.toml b/blackbox_solver/Cargo.toml index 26e0cd684..a83724a6c 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.18.1" +version = "0.18.2" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/brillig/CHANGELOG.md b/brillig/CHANGELOG.md index 4d4300daf..4c73ef793 100644 --- a/brillig/CHANGELOG.md +++ b/brillig/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.18.2](https://github.com/noir-lang/acvm/compare/brillig-v0.18.1...brillig-v0.18.2) (2023-07-12) + + +### Miscellaneous Chores + +* **brillig:** Synchronize acvm versions + ## [0.18.1](https://github.com/noir-lang/acvm/compare/brillig-v0.18.0...brillig-v0.18.1) (2023-07-12) diff --git a/brillig/Cargo.toml b/brillig/Cargo.toml index d29188aea..69e78bf5b 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.18.1" +version = "0.18.2" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/brillig_vm/CHANGELOG.md b/brillig_vm/CHANGELOG.md index 51a81d062..5b56a6537 100644 --- a/brillig_vm/CHANGELOG.md +++ b/brillig_vm/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.18.2](https://github.com/noir-lang/acvm/compare/brillig_vm-v0.18.1...brillig_vm-v0.18.2) (2023-07-12) + + +### Miscellaneous Chores + +* **brillig_vm:** Synchronize acvm versions + ## [0.18.1](https://github.com/noir-lang/acvm/compare/brillig_vm-v0.18.0...brillig_vm-v0.18.1) (2023-07-12) diff --git a/brillig_vm/Cargo.toml b/brillig_vm/Cargo.toml index 505922345..0cd3d87d4 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.18.1" +version = "0.18.2" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/stdlib/CHANGELOG.md b/stdlib/CHANGELOG.md index 658c5e602..b792e815c 100644 --- a/stdlib/CHANGELOG.md +++ b/stdlib/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.18.2](https://github.com/noir-lang/acvm/compare/acvm_stdlib-v0.18.1...acvm_stdlib-v0.18.2) (2023-07-12) + + +### Features + +* **stdlib:** Add fallback implementation of `Blake2s` black box function ([#424](https://github.com/noir-lang/acvm/issues/424)) ([982d940](https://github.com/noir-lang/acvm/commit/982d94087d46092ce7a5e94dbd7e732195f58e42)) + ## [0.18.1](https://github.com/noir-lang/acvm/compare/acvm_stdlib-v0.18.0...acvm_stdlib-v0.18.1) (2023-07-12) diff --git a/stdlib/Cargo.toml b/stdlib/Cargo.toml index 2e7c95c23..85e9a8b92 100644 --- a/stdlib/Cargo.toml +++ b/stdlib/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "acvm_stdlib" description = "The ACVM standard library." -version = "0.18.1" +version = "0.18.2" authors.workspace = true edition.workspace = true license.workspace = true