From b8be1dac4a9f0e3e35917fd4e193cee1c961e682 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Feb 2023 19:26:40 +0000 Subject: [PATCH] chore: Release 0.5.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 39 +++++++++++++++++++++++++++++++++++ Cargo.toml | 6 +++--- acir/CHANGELOG.md | 22 ++++++++++++++++++++ acir/Cargo.toml | 2 +- acir_field/CHANGELOG.md | 8 +++++++ acir_field/Cargo.toml | 2 +- acvm/CHANGELOG.md | 32 ++++++++++++++++++++++++++++ acvm/Cargo.toml | 2 +- stdlib/CHANGELOG.md | 19 +++++++++++++++++ stdlib/Cargo.toml | 4 ++-- 11 files changed, 129 insertions(+), 9 deletions(-) create mode 100644 acir/CHANGELOG.md create mode 100644 acir_field/CHANGELOG.md create mode 100644 acvm/CHANGELOG.md create mode 100644 stdlib/CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b01e31d45..4fbcd7ec0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.4.1","acir":"0.4.1","acir_field":"0.4.1","acvm":"0.4.1","stdlib":"0.4.1"} +{".":"0.5.0","acir":"0.5.0","acir_field":"0.5.0","acvm":"0.5.0","stdlib":"0.5.0"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e40fadda..ce4f566af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,45 @@ 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.5.0](https://github.com/noir-lang/acvm/compare/root-v0.4.1...root-v0.5.0) (2023-02-22) + + +### ⚠ BREAKING CHANGES + +* **acvm:** switch to accepting public inputs as a map ([#96](https://github.com/noir-lang/acvm/issues/96)) +* **acvm:** add `eth_contract_from_vk` to `SmartContract +* update `ProofSystemCompiler` to not take ownership of keys ([#111](https://github.com/noir-lang/acvm/issues/111)) +* update `ProofSystemCompiler` methods to take `&Circuit` ([#108](https://github.com/noir-lang/acvm/issues/108)) +* **acir:** make PublicInputs use a BTreeSet rather than Vec ([#99](https://github.com/noir-lang/acvm/issues/99)) +* refactor ToRadix to ToRadixLe and ToRadixBe ([#58](https://github.com/noir-lang/acvm/issues/58)) +* **acir:** Add keccak256 Opcode ([#91](https://github.com/noir-lang/acvm/issues/91)) +* Reorganiser compiler in terms of optimisers and transformers ([#88](https://github.com/noir-lang/acvm/issues/88)) + +### Features + +* **acir:** Add keccak256 Opcode ([#91](https://github.com/noir-lang/acvm/issues/91)) ([b909146](https://github.com/noir-lang/acvm/commit/b9091461e199bacdd073cc9b31f03dade0b4fb2d)) +* **acir:** make PublicInputs use a BTreeSet rather than Vec ([#99](https://github.com/noir-lang/acvm/issues/99)) ([53666b7](https://github.com/noir-lang/acvm/commit/53666b782d89c65cd755f9e4ded2c9cf5a141e46)) +* **acvm:** add `eth_contract_from_vk` to `SmartContract ([373c18f](https://github.com/noir-lang/acvm/commit/373c18fc05edf673cfec9e8bbb78bd7d7514999e)) +* **acvm:** add `eth_contract_from_vk` to `SmartContract ([#113](https://github.com/noir-lang/acvm/issues/113)) ([373c18f](https://github.com/noir-lang/acvm/commit/373c18fc05edf673cfec9e8bbb78bd7d7514999e)) +* **acvm:** switch to accepting public inputs as a map ([#96](https://github.com/noir-lang/acvm/issues/96)) ([f57ba57](https://github.com/noir-lang/acvm/commit/f57ba57c2bb2597edf2b02fb1321c69cf11993ee)) +* **ci:** Add release workflow ([#89](https://github.com/noir-lang/acvm/issues/89)) ([db8e828](https://github.com/noir-lang/acvm/commit/db8e828341f59241ef7f437c908277fb8fbca9e3)) +* **ci:** Publish crates upon release ([#104](https://github.com/noir-lang/acvm/issues/104)) ([b265920](https://github.com/noir-lang/acvm/commit/b265920bc1b0c776d20326a0b74fc635c22af4b9)) +* update `ProofSystemCompiler` methods to take `&Circuit` ([#108](https://github.com/noir-lang/acvm/issues/108)) ([af56ca9](https://github.com/noir-lang/acvm/commit/af56ca9da06068c650c66e76bfd09e65eb0ec213)) +* update `ProofSystemCompiler` to not take ownership of keys ([#111](https://github.com/noir-lang/acvm/issues/111)) ([39b8a41](https://github.com/noir-lang/acvm/commit/39b8a41293e567971f700f61103852cb987a8d16)) +* Update Arkworks' dependencies on `acir_field` ([#69](https://github.com/noir-lang/acvm/issues/69)) ([65d6130](https://github.com/noir-lang/acvm/commit/65d61307a12f25e04afad2d50e4c4db5ce97dd8c)) + + +### Bug Fixes + +* **ci:** Update dependency versions in the workspace file ([#103](https://github.com/noir-lang/acvm/issues/103)) ([9acc266](https://github.com/noir-lang/acvm/commit/9acc266c7dc5a6ad2fa9c466cc82cb81d984b7ed)) +* Clean up Log Directive hex output ([#97](https://github.com/noir-lang/acvm/issues/97)) ([d23c735](https://github.com/noir-lang/acvm/commit/d23c7352523ffb42f3e8f4229b61f9803ab78a7e)) + + +### Miscellaneous Chores + +* refactor ToRadix to ToRadixLe and ToRadixBe ([#58](https://github.com/noir-lang/acvm/issues/58)) ([2427a27](https://github.com/noir-lang/acvm/commit/2427a275048e598c6d651cce8348a4c55148f235)) +* Reorganiser compiler in terms of optimisers and transformers ([#88](https://github.com/noir-lang/acvm/issues/88)) ([9329307](https://github.com/noir-lang/acvm/commit/9329307e054de202cfc55207162ad952b70d515e)) + ## [0.4.1] - 2023-02-08 ### Added diff --git a/Cargo.toml b/Cargo.toml index f33339542..24913ef77 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,9 +9,9 @@ license = "MIT" rust-version = "1.66" [workspace.dependencies] -acir = { version = "0.4.1", path = "acir" } -acir_field = { version = "0.4.1", path = "acir_field" } -stdlib = { package = "acvm_stdlib", version = "0.4.1", path = "stdlib" } +acir = { version = "0.5.0", path = "acir" } +acir_field = { version = "0.5.0", path = "acir_field" } +stdlib = { package = "acvm_stdlib", version = "0.5.0", path = "stdlib" } hex = "0.4.2" num-bigint = "0.4" diff --git a/acir/CHANGELOG.md b/acir/CHANGELOG.md new file mode 100644 index 000000000..b3b0b586f --- /dev/null +++ b/acir/CHANGELOG.md @@ -0,0 +1,22 @@ +# Changelog + +## [0.5.0](https://github.com/noir-lang/acvm/compare/acir-v0.4.1...acir-v0.5.0) (2023-02-22) + + +### ⚠ BREAKING CHANGES + +* **acir:** make PublicInputs use a BTreeSet rather than Vec ([#99](https://github.com/noir-lang/acvm/issues/99)) +* refactor ToRadix to ToRadixLe and ToRadixBe ([#58](https://github.com/noir-lang/acvm/issues/58)) +* **acir:** Add keccak256 Opcode ([#91](https://github.com/noir-lang/acvm/issues/91)) +* Reorganiser compiler in terms of optimisers and transformers ([#88](https://github.com/noir-lang/acvm/issues/88)) + +### Features + +* **acir:** Add keccak256 Opcode ([#91](https://github.com/noir-lang/acvm/issues/91)) ([b909146](https://github.com/noir-lang/acvm/commit/b9091461e199bacdd073cc9b31f03dade0b4fb2d)) +* **acir:** make PublicInputs use a BTreeSet rather than Vec ([#99](https://github.com/noir-lang/acvm/issues/99)) ([53666b7](https://github.com/noir-lang/acvm/commit/53666b782d89c65cd755f9e4ded2c9cf5a141e46)) + + +### Miscellaneous Chores + +* refactor ToRadix to ToRadixLe and ToRadixBe ([#58](https://github.com/noir-lang/acvm/issues/58)) ([2427a27](https://github.com/noir-lang/acvm/commit/2427a275048e598c6d651cce8348a4c55148f235)) +* Reorganiser compiler in terms of optimisers and transformers ([#88](https://github.com/noir-lang/acvm/issues/88)) ([9329307](https://github.com/noir-lang/acvm/commit/9329307e054de202cfc55207162ad952b70d515e)) diff --git a/acir/Cargo.toml b/acir/Cargo.toml index 99bf51daf..c0885f6b0 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.4.1" +version = "0.5.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/acir_field/CHANGELOG.md b/acir_field/CHANGELOG.md new file mode 100644 index 000000000..d39722c68 --- /dev/null +++ b/acir_field/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +## [0.5.0](https://github.com/noir-lang/acvm/compare/acir_field-v0.4.1...acir_field-v0.5.0) (2023-02-22) + + +### Features + +* Update Arkworks' dependencies on `acir_field` ([#69](https://github.com/noir-lang/acvm/issues/69)) ([65d6130](https://github.com/noir-lang/acvm/commit/65d61307a12f25e04afad2d50e4c4db5ce97dd8c)) diff --git a/acir_field/Cargo.toml b/acir_field/Cargo.toml index 0d0f8f149..562f90a64 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.4.1" +version = "0.5.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/acvm/CHANGELOG.md b/acvm/CHANGELOG.md new file mode 100644 index 000000000..29edc4019 --- /dev/null +++ b/acvm/CHANGELOG.md @@ -0,0 +1,32 @@ +# Changelog + +## [0.5.0](https://github.com/noir-lang/acvm/compare/acvm-v0.4.1...acvm-v0.5.0) (2023-02-22) + + +### ⚠ BREAKING CHANGES + +* **acvm:** switch to accepting public inputs as a map ([#96](https://github.com/noir-lang/acvm/issues/96)) +* **acvm:** add `eth_contract_from_vk` to `SmartContract +* update `ProofSystemCompiler` to not take ownership of keys ([#111](https://github.com/noir-lang/acvm/issues/111)) +* update `ProofSystemCompiler` methods to take `&Circuit` ([#108](https://github.com/noir-lang/acvm/issues/108)) +* refactor ToRadix to ToRadixLe and ToRadixBe ([#58](https://github.com/noir-lang/acvm/issues/58)) +* Reorganiser compiler in terms of optimisers and transformers ([#88](https://github.com/noir-lang/acvm/issues/88)) + +### Features + +* **acvm:** add `eth_contract_from_vk` to `SmartContract ([373c18f](https://github.com/noir-lang/acvm/commit/373c18fc05edf673cfec9e8bbb78bd7d7514999e)) +* **acvm:** add `eth_contract_from_vk` to `SmartContract ([#113](https://github.com/noir-lang/acvm/issues/113)) ([373c18f](https://github.com/noir-lang/acvm/commit/373c18fc05edf673cfec9e8bbb78bd7d7514999e)) +* **acvm:** switch to accepting public inputs as a map ([#96](https://github.com/noir-lang/acvm/issues/96)) ([f57ba57](https://github.com/noir-lang/acvm/commit/f57ba57c2bb2597edf2b02fb1321c69cf11993ee)) +* update `ProofSystemCompiler` methods to take `&Circuit` ([#108](https://github.com/noir-lang/acvm/issues/108)) ([af56ca9](https://github.com/noir-lang/acvm/commit/af56ca9da06068c650c66e76bfd09e65eb0ec213)) +* update `ProofSystemCompiler` to not take ownership of keys ([#111](https://github.com/noir-lang/acvm/issues/111)) ([39b8a41](https://github.com/noir-lang/acvm/commit/39b8a41293e567971f700f61103852cb987a8d16)) + + +### Bug Fixes + +* Clean up Log Directive hex output ([#97](https://github.com/noir-lang/acvm/issues/97)) ([d23c735](https://github.com/noir-lang/acvm/commit/d23c7352523ffb42f3e8f4229b61f9803ab78a7e)) + + +### Miscellaneous Chores + +* refactor ToRadix to ToRadixLe and ToRadixBe ([#58](https://github.com/noir-lang/acvm/issues/58)) ([2427a27](https://github.com/noir-lang/acvm/commit/2427a275048e598c6d651cce8348a4c55148f235)) +* Reorganiser compiler in terms of optimisers and transformers ([#88](https://github.com/noir-lang/acvm/issues/88)) ([9329307](https://github.com/noir-lang/acvm/commit/9329307e054de202cfc55207162ad952b70d515e)) diff --git a/acvm/Cargo.toml b/acvm/Cargo.toml index 3b4108be0..1c160e688 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.4.1" +version = "0.5.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/stdlib/CHANGELOG.md b/stdlib/CHANGELOG.md new file mode 100644 index 000000000..bbbe7746c --- /dev/null +++ b/stdlib/CHANGELOG.md @@ -0,0 +1,19 @@ +# Changelog + +## [0.5.0](https://github.com/noir-lang/acvm/compare/acvm_stdlib-v0.4.1...acvm_stdlib-v0.5.0) (2023-02-22) + + +### ⚠ BREAKING CHANGES + +* refactor ToRadix to ToRadixLe and ToRadixBe ([#58](https://github.com/noir-lang/acvm/issues/58)) + +### Miscellaneous Chores + +* refactor ToRadix to ToRadixLe and ToRadixBe ([#58](https://github.com/noir-lang/acvm/issues/58)) ([2427a27](https://github.com/noir-lang/acvm/commit/2427a275048e598c6d651cce8348a4c55148f235)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * acir bumped from 0.4.1 to 0.5.0 diff --git a/stdlib/Cargo.toml b/stdlib/Cargo.toml index 5d6ccc1b2..f37ecbfdb 100644 --- a/stdlib/Cargo.toml +++ b/stdlib/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "acvm_stdlib" -version = "0.4.1" +version = "0.5.0" edition = "2021" license = "MIT" description = "The ACVM standard library." # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -acir = { version = "0.4.1", path = "../acir", features = ["bn254"] } +acir = { version = "0.5.0", path = "../acir", features = ["bn254"] }