From 761781c9b85b624ac6678cfced648e6b52f434ff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 7 Apr 2023 13:10:42 +0000 Subject: [PATCH] chore: Release 0.9.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 22 ++++++++++++++++++++++ Cargo.toml | 6 +++--- acir/CHANGELOG.md | 7 +++++++ acir/Cargo.toml | 2 +- acir_field/CHANGELOG.md | 7 +++++++ acir_field/Cargo.toml | 2 +- acvm/CHANGELOG.md | 17 +++++++++++++++++ acvm/Cargo.toml | 2 +- stdlib/CHANGELOG.md | 14 ++++++++++++++ stdlib/Cargo.toml | 4 ++-- 11 files changed, 76 insertions(+), 9 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 008d68380..8a3d59ee9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.8.1","acir":"0.8.1","acir_field":"0.8.1","acvm":"0.8.1","stdlib":"0.8.1"} +{".":"0.9.0","acir":"0.9.0","acir_field":"0.9.0","acvm":"0.9.0","stdlib":"0.9.0"} diff --git a/CHANGELOG.md b/CHANGELOG.md index a246aa7e7..4f4b09100 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,28 @@ 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.9.0](https://github.com/noir-lang/acvm/compare/root-v0.8.1...root-v0.9.0) (2023-04-07) + + +### ⚠ BREAKING CHANGES + +* **acvm:** Remove deprecated eth_contract_from_cs from SmartContract trait ([#185](https://github.com/noir-lang/acvm/issues/185)) +* **acvm:** make `Backend` trait object safe ([#180](https://github.com/noir-lang/acvm/issues/180)) + +### Features + +* **acvm:** make `Backend` trait object safe ([#180](https://github.com/noir-lang/acvm/issues/180)) ([fd28657](https://github.com/noir-lang/acvm/commit/fd28657426260ce3c53517b75a27eb5c4a74e234)) + + +### Bug Fixes + +* Add test for Out of Memory ([#188](https://github.com/noir-lang/acvm/issues/188)) ([c3db985](https://github.com/noir-lang/acvm/commit/c3db985893e7e59ea04005bb3a57eda5c6ce28c7)) + + +### Miscellaneous Chores + +* **acvm:** Remove deprecated eth_contract_from_cs from SmartContract trait ([#185](https://github.com/noir-lang/acvm/issues/185)) ([ee59c9e](https://github.com/noir-lang/acvm/commit/ee59c9efe9a54ff6b97e4daaebf64f3e327e97d9)) + ## [0.8.1](https://github.com/noir-lang/acvm/compare/root-v0.8.0...root-v0.8.1) (2023-03-30) diff --git a/Cargo.toml b/Cargo.toml index 38115f204..943f4cdd8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,9 +9,9 @@ license = "MIT" rust-version = "1.66" [workspace.dependencies] -acir = { version = "0.8.1", path = "acir" } -acir_field = { version = "0.8.1", path = "acir_field" } -stdlib = { package = "acvm_stdlib", version = "0.8.1", path = "stdlib" } +acir = { version = "0.9.0", path = "acir" } +acir_field = { version = "0.9.0", path = "acir_field" } +stdlib = { package = "acvm_stdlib", version = "0.9.0", path = "stdlib" } hex = "0.4.2" num-bigint = "0.4" diff --git a/acir/CHANGELOG.md b/acir/CHANGELOG.md index a4914c50c..1cbec65e1 100644 --- a/acir/CHANGELOG.md +++ b/acir/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.9.0](https://github.com/noir-lang/acvm/compare/acir-v0.8.1...acir-v0.9.0) (2023-04-07) + + +### Bug Fixes + +* Add test for Out of Memory ([#188](https://github.com/noir-lang/acvm/issues/188)) ([c3db985](https://github.com/noir-lang/acvm/commit/c3db985893e7e59ea04005bb3a57eda5c6ce28c7)) + ## [0.8.1](https://github.com/noir-lang/acvm/compare/acir-v0.8.0...acir-v0.8.1) (2023-03-30) diff --git a/acir/Cargo.toml b/acir/Cargo.toml index edbf1bcda..5ebbd9336 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.8.1" +version = "0.9.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/acir_field/CHANGELOG.md b/acir_field/CHANGELOG.md index 8dbdf4b74..477ccb4ed 100644 --- a/acir_field/CHANGELOG.md +++ b/acir_field/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.9.0](https://github.com/noir-lang/acvm/compare/acir_field-v0.8.1...acir_field-v0.9.0) (2023-04-07) + + +### Miscellaneous Chores + +* **acir_field:** Synchronize undefined versions + ## [0.8.1](https://github.com/noir-lang/acvm/compare/acir_field-v0.8.0...acir_field-v0.8.1) (2023-03-30) diff --git a/acir_field/Cargo.toml b/acir_field/Cargo.toml index b391a65d8..2dae43790 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.8.1" +version = "0.9.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/acvm/CHANGELOG.md b/acvm/CHANGELOG.md index 71fa071b4..10d878f8f 100644 --- a/acvm/CHANGELOG.md +++ b/acvm/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.9.0](https://github.com/noir-lang/acvm/compare/acvm-v0.8.1...acvm-v0.9.0) (2023-04-07) + + +### ⚠ BREAKING CHANGES + +* **acvm:** Remove deprecated eth_contract_from_cs from SmartContract trait ([#185](https://github.com/noir-lang/acvm/issues/185)) +* **acvm:** make `Backend` trait object safe ([#180](https://github.com/noir-lang/acvm/issues/180)) + +### Features + +* **acvm:** make `Backend` trait object safe ([#180](https://github.com/noir-lang/acvm/issues/180)) ([fd28657](https://github.com/noir-lang/acvm/commit/fd28657426260ce3c53517b75a27eb5c4a74e234)) + + +### Miscellaneous Chores + +* **acvm:** Remove deprecated eth_contract_from_cs from SmartContract trait ([#185](https://github.com/noir-lang/acvm/issues/185)) ([ee59c9e](https://github.com/noir-lang/acvm/commit/ee59c9efe9a54ff6b97e4daaebf64f3e327e97d9)) + ## [0.8.1](https://github.com/noir-lang/acvm/compare/acvm-v0.8.0...acvm-v0.8.1) (2023-03-30) diff --git a/acvm/Cargo.toml b/acvm/Cargo.toml index e1b895155..49ba23cce 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.8.1" +version = "0.9.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/stdlib/CHANGELOG.md b/stdlib/CHANGELOG.md index f8d3c20ea..97291bbbe 100644 --- a/stdlib/CHANGELOG.md +++ b/stdlib/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.9.0](https://github.com/noir-lang/acvm/compare/acvm_stdlib-v0.8.1...acvm_stdlib-v0.9.0) (2023-04-07) + + +### Miscellaneous Chores + +* **acvm_stdlib:** Synchronize undefined versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * acir bumped from 0.8.1 to 0.9.0 + ## [0.8.1](https://github.com/noir-lang/acvm/compare/acvm_stdlib-v0.8.0...acvm_stdlib-v0.8.1) (2023-03-30) diff --git a/stdlib/Cargo.toml b/stdlib/Cargo.toml index 9028010d3..13d0cd1f4 100644 --- a/stdlib/Cargo.toml +++ b/stdlib/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "acvm_stdlib" -version = "0.8.1" +version = "0.9.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.8.1", path = "../acir", features = ["bn254"] } +acir = { version = "0.9.0", path = "../acir", features = ["bn254"] }