diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4fbcd7ec0..78d5e74c2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.5.0","acir":"0.5.0","acir_field":"0.5.0","acvm":"0.5.0","stdlib":"0.5.0"} +{".":"0.5.1","acir":"0.5.1","acir_field":"0.5.1","acvm":"0.5.1","stdlib":"0.5.1"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 68cd7038b..ec037ff96 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.5.1](https://github.com/noir-lang/acvm/compare/root-v0.5.0...root-v0.5.1) (2023-02-28) + + +### Bug Fixes + +* **ci:** publish acvm_stdlib before acvm ([#117](https://github.com/noir-lang/acvm/issues/117)) ([ca6defc](https://github.com/noir-lang/acvm/commit/ca6defc9bb5f51241b2fc4d9cd732f9678b4688f)) + ## [0.5.0](https://github.com/noir-lang/acvm/compare/root-v0.4.1...root-v0.5.0) (2023-02-22) diff --git a/Cargo.toml b/Cargo.toml index 24913ef77..eb8ef0d0f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,9 +9,9 @@ license = "MIT" rust-version = "1.66" [workspace.dependencies] -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" } +acir = { version = "0.5.1", path = "acir" } +acir_field = { version = "0.5.1", path = "acir_field" } +stdlib = { package = "acvm_stdlib", version = "0.5.1", path = "stdlib" } hex = "0.4.2" num-bigint = "0.4" diff --git a/acir/CHANGELOG.md b/acir/CHANGELOG.md index 90d194e0e..ffefe3f2b 100644 --- a/acir/CHANGELOG.md +++ b/acir/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.5.1](https://github.com/noir-lang/acvm/compare/acir-v0.5.0...acir-v0.5.1) (2023-02-28) + + +### Miscellaneous Chores + +* **acir:** Synchronize undefined versions + ## [0.5.0](https://github.com/noir-lang/acvm/compare/acir-v0.4.1...acir-v0.5.0) (2023-02-22) diff --git a/acir/Cargo.toml b/acir/Cargo.toml index c0885f6b0..e586c2696 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.5.0" +version = "0.5.1" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/acir_field/CHANGELOG.md b/acir_field/CHANGELOG.md index d39722c68..cfac5f320 100644 --- a/acir_field/CHANGELOG.md +++ b/acir_field/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.5.1](https://github.com/noir-lang/acvm/compare/acir_field-v0.5.0...acir_field-v0.5.1) (2023-02-28) + + +### Miscellaneous Chores + +* **acir_field:** Synchronize undefined versions + ## [0.5.0](https://github.com/noir-lang/acvm/compare/acir_field-v0.4.1...acir_field-v0.5.0) (2023-02-22) diff --git a/acir_field/Cargo.toml b/acir_field/Cargo.toml index e575dee7f..a8cb73158 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.5.0" +version = "0.5.1" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/acvm/CHANGELOG.md b/acvm/CHANGELOG.md index 8d9ac5f28..b931666b7 100644 --- a/acvm/CHANGELOG.md +++ b/acvm/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.5.1](https://github.com/noir-lang/acvm/compare/acvm-v0.5.0...acvm-v0.5.1) (2023-02-28) + + +### Miscellaneous Chores + +* **acvm:** Synchronize undefined versions + ## [0.5.0](https://github.com/noir-lang/acvm/compare/acvm-v0.4.1...acvm-v0.5.0) (2023-02-22) diff --git a/acvm/Cargo.toml b/acvm/Cargo.toml index 456af6100..a6f579a56 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.5.0" +version = "0.5.1" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/stdlib/CHANGELOG.md b/stdlib/CHANGELOG.md index bbbe7746c..b233e26d4 100644 --- a/stdlib/CHANGELOG.md +++ b/stdlib/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.5.1](https://github.com/noir-lang/acvm/compare/acvm_stdlib-v0.5.0...acvm_stdlib-v0.5.1) (2023-02-28) + + +### Miscellaneous Chores + +* **acvm_stdlib:** Synchronize undefined versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * acir bumped from 0.5.0 to 0.5.1 + ## [0.5.0](https://github.com/noir-lang/acvm/compare/acvm_stdlib-v0.4.1...acvm_stdlib-v0.5.0) (2023-02-22) diff --git a/stdlib/Cargo.toml b/stdlib/Cargo.toml index f37ecbfdb..12ca38516 100644 --- a/stdlib/Cargo.toml +++ b/stdlib/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "acvm_stdlib" -version = "0.5.0" +version = "0.5.1" 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.5.0", path = "../acir", features = ["bn254"] } +acir = { version = "0.5.1", path = "../acir", features = ["bn254"] }