diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ff1c2e30b3a..ca85da28fb0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { ".": "0.14.0", - "acvm-repo": "0.27.1" + "acvm-repo": "0.27.2" } \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 7b44df9e29f..1e9753f9b62 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "acir" -version = "0.27.1" +version = "0.27.2" dependencies = [ "acir_field", "bincode", @@ -20,7 +20,7 @@ dependencies = [ [[package]] name = "acir_field" -version = "0.27.1" +version = "0.27.2" dependencies = [ "ark-bls12-381", "ark-bn254", @@ -33,7 +33,7 @@ dependencies = [ [[package]] name = "acvm" -version = "0.27.1" +version = "0.27.2" dependencies = [ "acir", "acvm_blackbox_solver", @@ -50,7 +50,7 @@ dependencies = [ [[package]] name = "acvm_blackbox_solver" -version = "0.27.1" +version = "0.27.2" dependencies = [ "acir", "blake2", @@ -63,7 +63,7 @@ dependencies = [ [[package]] name = "acvm_js" -version = "0.27.1" +version = "0.27.2" dependencies = [ "acvm", "barretenberg_blackbox_solver", @@ -84,7 +84,7 @@ dependencies = [ [[package]] name = "acvm_stdlib" -version = "0.27.1" +version = "0.27.2" dependencies = [ "acir", ] @@ -440,7 +440,7 @@ dependencies = [ [[package]] name = "barretenberg_blackbox_solver" -version = "0.27.1" +version = "0.27.2" dependencies = [ "acir", "acvm_blackbox_solver", @@ -562,7 +562,7 @@ dependencies = [ [[package]] name = "brillig" -version = "0.27.1" +version = "0.27.2" dependencies = [ "acir_field", "serde", @@ -570,7 +570,7 @@ dependencies = [ [[package]] name = "brillig_vm" -version = "0.27.1" +version = "0.27.2" dependencies = [ "acir", "acvm_blackbox_solver", diff --git a/acvm-repo/CHANGELOG.md b/acvm-repo/CHANGELOG.md index 2a765e5dfe8..9e5b514991a 100644 --- a/acvm-repo/CHANGELOG.md +++ b/acvm-repo/CHANGELOG.md @@ -5,6 +5,13 @@ 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.27.2](https://github.com/noir-lang/noir/compare/v0.27.1...v0.27.2) (2023-09-27) + + +### Bug Fixes + +* **acvm:** Return false rather than panicking on invalid ECDSA signatures ([#2783](https://github.com/noir-lang/noir/issues/2783)) ([155abc0](https://github.com/noir-lang/noir/commit/155abc0d99fff41c79163c16bf297d41e5dff0fa)) + ## [0.27.1](https://github.com/noir-lang/noir/compare/v0.27.0...v0.27.1) (2023-09-26) diff --git a/acvm-repo/acir/Cargo.toml b/acvm-repo/acir/Cargo.toml index 8885b8060ac..9033ebe299e 100644 --- a/acvm-repo/acir/Cargo.toml +++ b/acvm-repo/acir/Cargo.toml @@ -2,7 +2,7 @@ name = "acir" description = "ACIR is the IR that the VM processes, it is analogous to LLVM IR" # x-release-please-start-version -version = "0.27.1" +version = "0.27.2" # x-release-please-end authors.workspace = true edition.workspace = true diff --git a/acvm-repo/acir_field/Cargo.toml b/acvm-repo/acir_field/Cargo.toml index bd1d32c6255..7a5533b0fc5 100644 --- a/acvm-repo/acir_field/Cargo.toml +++ b/acvm-repo/acir_field/Cargo.toml @@ -2,7 +2,7 @@ name = "acir_field" description = "The field implementation being used by ACIR." # x-release-please-start-version -version = "0.27.1" +version = "0.27.2" # x-release-please-end authors.workspace = true edition.workspace = true diff --git a/acvm-repo/acvm/Cargo.toml b/acvm-repo/acvm/Cargo.toml index 06579838fe9..b404d76b321 100644 --- a/acvm-repo/acvm/Cargo.toml +++ b/acvm-repo/acvm/Cargo.toml @@ -2,7 +2,7 @@ name = "acvm" description = "The virtual machine that processes ACIR given a backend/proof system." # x-release-please-start-version -version = "0.27.1" +version = "0.27.2" # x-release-please-end authors.workspace = true edition.workspace = true diff --git a/acvm-repo/acvm_js/Cargo.toml b/acvm-repo/acvm_js/Cargo.toml index ebaf079d268..855ea5202c3 100644 --- a/acvm-repo/acvm_js/Cargo.toml +++ b/acvm-repo/acvm_js/Cargo.toml @@ -2,7 +2,7 @@ name = "acvm_js" description = "Typescript wrapper around the ACVM allowing execution of ACIR code" # x-release-please-start-version -version = "0.27.1" +version = "0.27.2" # x-release-please-end authors.workspace = true edition.workspace = true diff --git a/acvm-repo/acvm_js/package.json b/acvm-repo/acvm_js/package.json index d509e55ecf9..d1a2c2f7bfa 100644 --- a/acvm-repo/acvm_js/package.json +++ b/acvm-repo/acvm_js/package.json @@ -1,6 +1,6 @@ { "name": "@noir-lang/acvm_js", - "version": "0.27.1", + "version": "0.27.2", "private": true, "repository": { "type": "git", diff --git a/acvm-repo/barretenberg_blackbox_solver/Cargo.toml b/acvm-repo/barretenberg_blackbox_solver/Cargo.toml index 5f232dc7e38..95e1555a427 100644 --- a/acvm-repo/barretenberg_blackbox_solver/Cargo.toml +++ b/acvm-repo/barretenberg_blackbox_solver/Cargo.toml @@ -2,7 +2,7 @@ name = "barretenberg_blackbox_solver" description = "A wrapper around a barretenberg WASM binary to execute black box functions for which there is no rust implementation" # x-release-please-start-version -version = "0.27.1" +version = "0.27.2" # x-release-please-end authors.workspace = true edition.workspace = true diff --git a/acvm-repo/blackbox_solver/Cargo.toml b/acvm-repo/blackbox_solver/Cargo.toml index 45145119443..418c4a404df 100644 --- a/acvm-repo/blackbox_solver/Cargo.toml +++ b/acvm-repo/blackbox_solver/Cargo.toml @@ -2,7 +2,7 @@ name = "acvm_blackbox_solver" description = "A solver for the blackbox functions found in ACIR and Brillig" # x-release-please-start-version -version = "0.27.1" +version = "0.27.2" # x-release-please-end authors.workspace = true edition.workspace = true diff --git a/acvm-repo/brillig/Cargo.toml b/acvm-repo/brillig/Cargo.toml index 3ff38f40d70..99ff19dae59 100644 --- a/acvm-repo/brillig/Cargo.toml +++ b/acvm-repo/brillig/Cargo.toml @@ -2,7 +2,7 @@ name = "brillig" description = "Brillig is the bytecode ACIR uses for non-determinism." # x-release-please-start-version -version = "0.27.1" +version = "0.27.2" # x-release-please-end authors.workspace = true edition.workspace = true diff --git a/acvm-repo/brillig_vm/Cargo.toml b/acvm-repo/brillig_vm/Cargo.toml index 098f8b473f6..0c24a4b676b 100644 --- a/acvm-repo/brillig_vm/Cargo.toml +++ b/acvm-repo/brillig_vm/Cargo.toml @@ -2,7 +2,7 @@ name = "brillig_vm" description = "The virtual machine that processes Brillig bytecode, used to introduce non-determinism to the ACVM" # x-release-please-start-version -version = "0.27.1" +version = "0.27.2" # x-release-please-end authors.workspace = true edition.workspace = true diff --git a/acvm-repo/stdlib/Cargo.toml b/acvm-repo/stdlib/Cargo.toml index c132a4b4bdc..e4d90095a2f 100644 --- a/acvm-repo/stdlib/Cargo.toml +++ b/acvm-repo/stdlib/Cargo.toml @@ -2,7 +2,7 @@ name = "acvm_stdlib" description = "The ACVM standard library." # x-release-please-start-version -version = "0.27.1" +version = "0.27.2" # x-release-please-end authors.workspace = true edition.workspace = true