From 451e71b09f40132815cfc13538e929c2b8ca4e7e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 28 Apr 2023 14:52:13 +0000 Subject: [PATCH] chore: Release 0.10.3 --- .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 4b062de81..59624fc41 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.10.2","acir":"0.10.2","acir_field":"0.10.2","acvm":"0.10.2","stdlib":"0.10.2"} +{".":"0.10.3","acir":"0.10.3","acir_field":"0.10.3","acvm":"0.10.3","stdlib":"0.10.3"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c5ee8294..58358bfe8 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.3](https://github.com/noir-lang/acvm/compare/root-v0.10.2...root-v0.10.3) (2023-04-28) + + +### Bug Fixes + +* add default feature flag to ACVM crate ([#245](https://github.com/noir-lang/acvm/issues/245)) ([455fddb](https://github.com/noir-lang/acvm/commit/455fddbc19af81cb01d54e29cad199691e1a1d98)) + ## [0.10.2](https://github.com/noir-lang/acvm/compare/root-v0.10.1...root-v0.10.2) (2023-04-28) diff --git a/Cargo.toml b/Cargo.toml index 8e6f7580e..3f2355a9d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,9 +9,9 @@ license = "MIT" rust-version = "1.66" [workspace.dependencies] -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 } +acir = { version = "0.10.3", path = "acir", default-features = false } +acir_field = { version = "0.10.3", path = "acir_field", default-features = false } +stdlib = { package = "acvm_stdlib", version = "0.10.3", path = "stdlib", default-features = false } hex = "0.4.2" num-bigint = "0.4" diff --git a/acir/CHANGELOG.md b/acir/CHANGELOG.md index 3d4dcf4ed..fa9365fea 100644 --- a/acir/CHANGELOG.md +++ b/acir/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.10.3](https://github.com/noir-lang/acvm/compare/acir-v0.10.2...acir-v0.10.3) (2023-04-28) + + +### Miscellaneous Chores + +* **acir:** Synchronize undefined versions + ## [0.10.2](https://github.com/noir-lang/acvm/compare/acir-v0.10.1...acir-v0.10.2) (2023-04-28) diff --git a/acir/Cargo.toml b/acir/Cargo.toml index 983c4f5a4..0c861d2ad 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.2" +version = "0.10.3" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/acir_field/CHANGELOG.md b/acir_field/CHANGELOG.md index 6235644ad..006335103 100644 --- a/acir_field/CHANGELOG.md +++ b/acir_field/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.10.3](https://github.com/noir-lang/acvm/compare/acir_field-v0.10.2...acir_field-v0.10.3) (2023-04-28) + + +### Miscellaneous Chores + +* **acir_field:** Synchronize undefined versions + ## [0.10.2](https://github.com/noir-lang/acvm/compare/acir_field-v0.10.1...acir_field-v0.10.2) (2023-04-28) diff --git a/acir_field/Cargo.toml b/acir_field/Cargo.toml index dacefb142..bb5230f4c 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.2" +version = "0.10.3" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/acvm/CHANGELOG.md b/acvm/CHANGELOG.md index 3c4058d19..71d6393d9 100644 --- a/acvm/CHANGELOG.md +++ b/acvm/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.10.3](https://github.com/noir-lang/acvm/compare/acvm-v0.10.2...acvm-v0.10.3) (2023-04-28) + + +### Bug Fixes + +* add default feature flag to ACVM crate ([#245](https://github.com/noir-lang/acvm/issues/245)) ([455fddb](https://github.com/noir-lang/acvm/commit/455fddbc19af81cb01d54e29cad199691e1a1d98)) + ## [0.10.2](https://github.com/noir-lang/acvm/compare/acvm-v0.10.1...acvm-v0.10.2) (2023-04-28) diff --git a/acvm/Cargo.toml b/acvm/Cargo.toml index 5fde72003..6c99ab842 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.2" +version = "0.10.3" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/stdlib/CHANGELOG.md b/stdlib/CHANGELOG.md index 1ef343d5a..ce6850d6e 100644 --- a/stdlib/CHANGELOG.md +++ b/stdlib/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.10.3](https://github.com/noir-lang/acvm/compare/acvm_stdlib-v0.10.2...acvm_stdlib-v0.10.3) (2023-04-28) + + +### Miscellaneous Chores + +* **acvm_stdlib:** Synchronize undefined versions + ## [0.10.2](https://github.com/noir-lang/acvm/compare/acvm_stdlib-v0.10.1...acvm_stdlib-v0.10.2) (2023-04-28) diff --git a/stdlib/Cargo.toml b/stdlib/Cargo.toml index 6b59f07c7..b9079359c 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.2" +version = "0.10.3" authors.workspace = true edition.workspace = true license.workspace = true