diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e1c7abecb1de..ea56b558e34b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,7 +1,7 @@ { - ".": "0.46.0", + ".": "0.46.1", "yarn-project/cli": "0.35.1", - "yarn-project/aztec": "0.46.0", - "barretenberg": "0.46.0", - "barretenberg/ts": "0.46.0" + "yarn-project/aztec": "0.46.1", + "barretenberg": "0.46.1", + "barretenberg/ts": "0.46.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c75ee654b76..91d4db49bd1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## [0.46.1](https://github.com/AztecProtocol/aztec-packages/compare/aztec-packages-v0.46.0...aztec-packages-v0.46.1) (2024-07-10) + + +### Features + +* Apply `no_predicates` in stdlib (https://github.com/noir-lang/noir/pull/5454) ([6237d96](https://github.com/AztecProtocol/aztec-packages/commit/6237d96a0bc23a5ed656e7ba172fb57facd9c807)) +* Lsp rename/find-all-references for globals (https://github.com/noir-lang/noir/pull/5415) ([6237d96](https://github.com/AztecProtocol/aztec-packages/commit/6237d96a0bc23a5ed656e7ba172fb57facd9c807)) +* Lsp rename/find-all-references for local variables (https://github.com/noir-lang/noir/pull/5439) ([6237d96](https://github.com/AztecProtocol/aztec-packages/commit/6237d96a0bc23a5ed656e7ba172fb57facd9c807)) +* Remove duplicated array reads at constant indices (https://github.com/noir-lang/noir/pull/5445) ([6237d96](https://github.com/AztecProtocol/aztec-packages/commit/6237d96a0bc23a5ed656e7ba172fb57facd9c807)) +* Remove redundant `EnableSideEffects` instructions (https://github.com/noir-lang/noir/pull/5440) ([6237d96](https://github.com/AztecProtocol/aztec-packages/commit/6237d96a0bc23a5ed656e7ba172fb57facd9c807)) + + +### Bug Fixes + +* Account for the expected kind when resolving turbofish generics (https://github.com/noir-lang/noir/pull/5448) ([6237d96](https://github.com/AztecProtocol/aztec-packages/commit/6237d96a0bc23a5ed656e7ba172fb57facd9c807)) +* Added bb to noir-projects deps ([#7412](https://github.com/AztecProtocol/aztec-packages/issues/7412)) ([6d3ed3a](https://github.com/AztecProtocol/aztec-packages/commit/6d3ed3a5269f1354c8c722232fd6f1d46ac7a245)) +* Fix issue with unresolved results (https://github.com/noir-lang/noir/pull/5453) ([6237d96](https://github.com/AztecProtocol/aztec-packages/commit/6237d96a0bc23a5ed656e7ba172fb57facd9c807)) +* Prevent `no_predicates` from removing predicates in calling function (https://github.com/noir-lang/noir/pull/5452) ([6237d96](https://github.com/AztecProtocol/aztec-packages/commit/6237d96a0bc23a5ed656e7ba172fb57facd9c807)) + + +### Miscellaneous + +* Replace relative paths to noir-protocol-circuits ([db45302](https://github.com/AztecProtocol/aztec-packages/commit/db453026efa29dddc973f507b002c1c4fd1a3676)) +* Replace usage of `GrumpkinPoint` with `EmbeddedCurvePoint` ([#7382](https://github.com/AztecProtocol/aztec-packages/issues/7382)) ([5279695](https://github.com/AztecProtocol/aztec-packages/commit/52796958738f8f1eb90d9691ff489d189f9bce90)) +* Replace usage of `GrumpkinPrivateKey` with `EmbeddedCurveScalar` ([#7384](https://github.com/AztecProtocol/aztec-packages/issues/7384)) ([a917198](https://github.com/AztecProtocol/aztec-packages/commit/a917198c6a17063414087419d8cb1de93e6dc21e)) + ## [0.46.0](https://github.com/AztecProtocol/aztec-packages/compare/aztec-packages-v0.45.1...aztec-packages-v0.46.0) (2024-07-09) diff --git a/barretenberg/CHANGELOG.md b/barretenberg/CHANGELOG.md index 6806245eeca6..c2f2cbe84ab4 100644 --- a/barretenberg/CHANGELOG.md +++ b/barretenberg/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.46.1](https://github.com/AztecProtocol/aztec-packages/compare/barretenberg-v0.46.0...barretenberg-v0.46.1) (2024-07-10) + + +### Miscellaneous + +* **barretenberg:** Synchronize aztec-packages versions + ## [0.46.0](https://github.com/AztecProtocol/aztec-packages/compare/barretenberg-v0.45.1...barretenberg-v0.46.0) (2024-07-09) diff --git a/barretenberg/cpp/CMakeLists.txt b/barretenberg/cpp/CMakeLists.txt index 27b34848e879..3d3c26f11437 100644 --- a/barretenberg/cpp/CMakeLists.txt +++ b/barretenberg/cpp/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.24 FATAL_ERROR) project( Barretenberg DESCRIPTION "BN254 elliptic curve library, and PLONK SNARK prover" - VERSION 0.46.0 # x-release-please-version + VERSION 0.46.1 # x-release-please-version LANGUAGES CXX C ) # Insert version into `bb` config file diff --git a/barretenberg/ts/CHANGELOG.md b/barretenberg/ts/CHANGELOG.md index b89e48bb718a..6b48a6dfd0c1 100644 --- a/barretenberg/ts/CHANGELOG.md +++ b/barretenberg/ts/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.46.1](https://github.com/AztecProtocol/aztec-packages/compare/barretenberg.js-v0.46.0...barretenberg.js-v0.46.1) (2024-07-10) + + +### Miscellaneous + +* **barretenberg.js:** Synchronize aztec-packages versions + ## [0.46.0](https://github.com/AztecProtocol/aztec-packages/compare/barretenberg.js-v0.45.1...barretenberg.js-v0.46.0) (2024-07-09) diff --git a/barretenberg/ts/package.json b/barretenberg/ts/package.json index da00569ceb9d..b3c381a66fa9 100644 --- a/barretenberg/ts/package.json +++ b/barretenberg/ts/package.json @@ -1,6 +1,6 @@ { "name": "@aztec/bb.js", - "version": "0.46.0", + "version": "0.46.1", "homepage": "https://github.com/AztecProtocol/aztec-packages/tree/master/barretenberg/ts", "license": "MIT", "type": "module", diff --git a/yarn-project/aztec/CHANGELOG.md b/yarn-project/aztec/CHANGELOG.md index 4823d02f7815..9a25a45a3868 100644 --- a/yarn-project/aztec/CHANGELOG.md +++ b/yarn-project/aztec/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.46.1](https://github.com/AztecProtocol/aztec-packages/compare/aztec-package-v0.46.0...aztec-package-v0.46.1) (2024-07-10) + + +### Miscellaneous + +* **aztec-package:** Synchronize aztec-packages versions + ## [0.46.0](https://github.com/AztecProtocol/aztec-packages/compare/aztec-package-v0.45.1...aztec-package-v0.46.0) (2024-07-09) diff --git a/yarn-project/aztec/package.json b/yarn-project/aztec/package.json index 8aff7e530363..2c08cd65b1e0 100644 --- a/yarn-project/aztec/package.json +++ b/yarn-project/aztec/package.json @@ -1,6 +1,6 @@ { "name": "@aztec/aztec", - "version": "0.46.0", + "version": "0.46.1", "type": "module", "exports": { ".": "./dest/index.js"