From f565e926dc55398ba04db1c2e41736f609f16ca1 Mon Sep 17 00:00:00 2001 From: kevaundray Date: Thu, 11 May 2023 16:48:08 +0100 Subject: [PATCH] chore(noir): Release 0.6.0 --- CHANGELOG.md | 34 ++++++++++++++++++++++++++++++++++ Cargo.toml | 2 +- flake.nix | 2 +- 3 files changed, 36 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c554330a470..f359c6ea89a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,39 @@ # Changelog +## [0.6.0](https://github.com/noir-lang/noir/compare/v0.5.1...v0.6.0) (2023-05-11) + + +### ⚠ BREAKING CHANGES + +* **parser:** deprecate `constrain` keyword for `assert` ([#1286](https://github.com/noir-lang/noir/issues/1286)) + +### Features + +* add integration tests for bitshift operators ([#1272](https://github.com/noir-lang/noir/issues/1272)) ([4422bed](https://github.com/noir-lang/noir/commit/4422bed143508e37cda6fb218f1cf62921fc0f6f)) +* enable dynamic arrays ([#1271](https://github.com/noir-lang/noir/issues/1271)) ([9f43450](https://github.com/noir-lang/noir/commit/9f434507fa431a9dbf4130374b866a5de6176d76)) +* **nargo:** Remove usage of `CompiledProgram` in CLI code and use separate ABI/bytecode ([#1269](https://github.com/noir-lang/noir/issues/1269)) ([f144391](https://github.com/noir-lang/noir/commit/f144391b4295b127f3f422e862a087a90dac1dbf)) +* **ssa refactor:** experimental-ssa compiler flag ([#1289](https://github.com/noir-lang/noir/issues/1289)) ([afa6749](https://github.com/noir-lang/noir/commit/afa67494c564b68b667535f2d8ef234fbc4bec12)) +* **ssa refactor:** Implement dominator tree ([#1278](https://github.com/noir-lang/noir/issues/1278)) ([144ebf5](https://github.com/noir-lang/noir/commit/144ebf51522fb19847be28de5595247051fcd92e)) +* **stdlib:** Add keccak ([#1249](https://github.com/noir-lang/noir/issues/1249)) ([260d87d](https://github.com/noir-lang/noir/commit/260d87d1ef86069a1fcf0f9b4969589273e381d1)) +* **wasm:** improved serialization of contracts in wasm ([#1281](https://github.com/noir-lang/noir/issues/1281)) ([7bac22b](https://github.com/noir-lang/noir/commit/7bac22bc6ad809e85b92d6b05ecea2e93ebba5ea)) +* **wasm:** serialization of contracts in wasm ([7bac22b](https://github.com/noir-lang/noir/commit/7bac22bc6ad809e85b92d6b05ecea2e93ebba5ea)) + + +### Bug Fixes + +* Assigning to tuple fields ([#1318](https://github.com/noir-lang/noir/issues/1318)) ([460568e](https://github.com/noir-lang/noir/commit/460568e50a810f90db6559195492547095ab8c32)) +* **ci:** Labeling `doc needed` PRs with uppercase checkbox `- [X]` ([#1290](https://github.com/noir-lang/noir/issues/1290)) ([16fd327](https://github.com/noir-lang/noir/commit/16fd3279f2b4bf81f5bde2474b454f112c03fb3e)) +* Fix struct or tuple field assignment failing with generics ([#1317](https://github.com/noir-lang/noir/issues/1317)) ([d872890](https://github.com/noir-lang/noir/commit/d872890e408ada056e9aab84a7774dcaa2049324)), closes [#1315](https://github.com/noir-lang/noir/issues/1315) +* Labeling `doc needed` PRs with uppercase checkbox `- [X]` ([16fd327](https://github.com/noir-lang/noir/commit/16fd3279f2b4bf81f5bde2474b454f112c03fb3e)) +* Parsing nested generics ([#1319](https://github.com/noir-lang/noir/issues/1319)) ([36f5b8e](https://github.com/noir-lang/noir/commit/36f5b8e88fe8048ece1a54755789d56c8803b3ab)) +* **ssa:** add block opcode ([#1291](https://github.com/noir-lang/noir/issues/1291)) ([951ad71](https://github.com/noir-lang/noir/commit/951ad71e0f8bc9a6e95ae21197854396ed7f6e78)) +* to-bits and to-radix for > 128 bits ([#1312](https://github.com/noir-lang/noir/issues/1312)) ([12f3e7e](https://github.com/noir-lang/noir/commit/12f3e7e5917fdcb6b8648032772a7541eaef4751)) + + +### Miscellaneous Chores + +* **parser:** deprecate `constrain` keyword for `assert` ([#1286](https://github.com/noir-lang/noir/issues/1286)) ([9740f54](https://github.com/noir-lang/noir/commit/9740f54c28f30ea9367897fa986d8aea1aba79f2)) + ## [0.5.1](https://github.com/noir-lang/noir/compare/v0.5.0...v0.5.1) (2023-05-01) diff --git a/Cargo.toml b/Cargo.toml index badaab032ce..0645c722973 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ default-members = ["crates/nargo_cli"] [workspace.package] # x-release-please-start-version -version = "0.5.1" +version = "0.6.0" # x-release-please-end authors = ["The Noir Team "] edition = "2021" diff --git a/flake.nix b/flake.nix index 7109e266e0f..c15a1e51061 100644 --- a/flake.nix +++ b/flake.nix @@ -106,7 +106,7 @@ commonArgs = environment // { pname = "noir"; # x-release-please-start-version - version = "0.5.1"; + version = "0.6.0"; # x-release-please-end # Use our custom stdenv to build and test our Rust project