From 7e718fd53ad1c96f5b9374935688b35688a5f2ae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 28 Apr 2023 13:36:17 +0000 Subject: [PATCH] chore: Release 0.10.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ Cargo.toml | 6 +++--- acir/CHANGELOG.md | 7 +++++++ acir/Cargo.toml | 2 +- acir_field/CHANGELOG.md | 7 +++++++ acir_field/Cargo.toml | 2 +- acvm/CHANGELOG.md | 7 +++++++ acvm/Cargo.toml | 2 +- stdlib/CHANGELOG.md | 7 +++++++ stdlib/Cargo.toml | 2 +- 11 files changed, 43 insertions(+), 8 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ff8e09347..4b062de81 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.10.1","acir":"0.10.1","acir_field":"0.10.1","acvm":"0.10.1","stdlib":"0.10.1"} +{".":"0.10.2","acir":"0.10.2","acir_field":"0.10.2","acvm":"0.10.2","stdlib":"0.10.2"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 0209be8d5..2c5ee8294 100644 --- a/CHANGELOG.md +++ b/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.10.2](https://github.com/noir-lang/acvm/compare/root-v0.10.1...root-v0.10.2) (2023-04-28) + + +### Bug Fixes + +* add default flag to `acvm_stdlib` ([#242](https://github.com/noir-lang/acvm/issues/242)) ([83b6fa8](https://github.com/noir-lang/acvm/commit/83b6fa8302569add7e3ac8481b2fd2a6a1ff3576)) + ## [0.10.1](https://github.com/noir-lang/acvm/compare/root-v0.10.0...root-v0.10.1) (2023-04-28) diff --git a/Cargo.toml b/Cargo.toml index ac1952527..8e6f7580e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,9 +9,9 @@ license = "MIT" rust-version = "1.66" [workspace.dependencies] -acir = { version = "0.10.1", path = "acir", default-features = false } -acir_field = { version = "0.10.1", path = "acir_field", default-features = false } -stdlib = { package = "acvm_stdlib", version = "0.10.1", path = "stdlib", default-features = false } +acir = { version = "0.10.2", path = "acir", default-features = false } +acir_field = { version = "0.10.2", path = "acir_field", default-features = false } +stdlib = { package = "acvm_stdlib", version = "0.10.2", path = "stdlib", default-features = false } hex = "0.4.2" num-bigint = "0.4" diff --git a/acir/CHANGELOG.md b/acir/CHANGELOG.md index 825d1ed83..3d4dcf4ed 100644 --- a/acir/CHANGELOG.md +++ b/acir/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.10.2](https://github.com/noir-lang/acvm/compare/acir-v0.10.1...acir-v0.10.2) (2023-04-28) + + +### Miscellaneous Chores + +* **acir:** Synchronize undefined versions + ## [0.10.1](https://github.com/noir-lang/acvm/compare/acir-v0.10.0...acir-v0.10.1) (2023-04-28) diff --git a/acir/Cargo.toml b/acir/Cargo.toml index 83c19fdfb..983c4f5a4 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.10.1" +version = "0.10.2" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/acir_field/CHANGELOG.md b/acir_field/CHANGELOG.md index 5a2315842..6235644ad 100644 --- a/acir_field/CHANGELOG.md +++ b/acir_field/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.10.2](https://github.com/noir-lang/acvm/compare/acir_field-v0.10.1...acir_field-v0.10.2) (2023-04-28) + + +### Miscellaneous Chores + +* **acir_field:** Synchronize undefined versions + ## [0.10.1](https://github.com/noir-lang/acvm/compare/acir_field-v0.10.0...acir_field-v0.10.1) (2023-04-28) diff --git a/acir_field/Cargo.toml b/acir_field/Cargo.toml index 22bc2ac12..dacefb142 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.10.1" +version = "0.10.2" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/acvm/CHANGELOG.md b/acvm/CHANGELOG.md index c53057b96..3c4058d19 100644 --- a/acvm/CHANGELOG.md +++ b/acvm/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.10.2](https://github.com/noir-lang/acvm/compare/acvm-v0.10.1...acvm-v0.10.2) (2023-04-28) + + +### Miscellaneous Chores + +* **acvm:** Synchronize undefined versions + ## [0.10.1](https://github.com/noir-lang/acvm/compare/acvm-v0.10.0...acvm-v0.10.1) (2023-04-28) diff --git a/acvm/Cargo.toml b/acvm/Cargo.toml index 834d4d11a..7881b435d 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.10.1" +version = "0.10.2" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/stdlib/CHANGELOG.md b/stdlib/CHANGELOG.md index eb197f888..1ef343d5a 100644 --- a/stdlib/CHANGELOG.md +++ b/stdlib/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.10.2](https://github.com/noir-lang/acvm/compare/acvm_stdlib-v0.10.1...acvm_stdlib-v0.10.2) (2023-04-28) + + +### Bug Fixes + +* add default flag to `acvm_stdlib` ([#242](https://github.com/noir-lang/acvm/issues/242)) ([83b6fa8](https://github.com/noir-lang/acvm/commit/83b6fa8302569add7e3ac8481b2fd2a6a1ff3576)) + ## [0.10.1](https://github.com/noir-lang/acvm/compare/acvm_stdlib-v0.10.0...acvm_stdlib-v0.10.1) (2023-04-28) diff --git a/stdlib/Cargo.toml b/stdlib/Cargo.toml index 53cde0cef..6b59f07c7 100644 --- a/stdlib/Cargo.toml +++ b/stdlib/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "acvm_stdlib" description = "The ACVM standard library." -version = "0.10.1" +version = "0.10.2" authors.workspace = true edition.workspace = true license.workspace = true