Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

Commit

Permalink
chore: Release 0.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kevaundray committed Jul 26, 2023
1 parent 6a03950 commit 8b02e0a
Show file tree
Hide file tree
Showing 17 changed files with 89 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"0.20.1","acir":"0.20.1","acir_field":"0.20.1","acvm":"0.20.1","stdlib":"0.20.1","brillig":"0.20.1","brillig_vm":"0.20.1","blackbox_solver":"0.20.1"}
{".":"0.21.0","acir":"0.21.0","acir_field":"0.21.0","acvm":"0.21.0","stdlib":"0.21.0","brillig":"0.21.0","brillig_vm":"0.21.0","blackbox_solver":"0.21.0"}
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ 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.21.0](https://github.com/noir-lang/acvm/compare/root-v0.20.1...root-v0.21.0) (2023-07-26)


### ⚠ BREAKING CHANGES

* **acvm:** Support stepwise execution of ACIR ([#399](https://github.com/noir-lang/acvm/issues/399))

### Features

* **acvm:** Support stepwise execution of ACIR ([#399](https://github.com/noir-lang/acvm/issues/399)) ([6a03950](https://github.com/noir-lang/acvm/commit/6a0395021779a2711353c2fe2948e09b5b538fc0))

## [0.20.1](https://github.com/noir-lang/acvm/compare/root-v0.20.0...root-v0.20.1) (2023-07-26)


Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ rust-version = "1.66"
repository = "https://github.com/noir-lang/acvm/"

[workspace.dependencies]
acir = { version = "0.20.1", path = "acir", default-features = false }
acir_field = { version = "0.20.1", path = "acir_field", default-features = false }
stdlib = { package = "acvm_stdlib", version = "0.20.1", path = "stdlib", default-features = false }
brillig = { version = "0.20.1", path = "brillig", default-features = false }
blackbox_solver = { package = "acvm_blackbox_solver", version = "0.20.1", path = "blackbox_solver", default-features = false }
acir = { version = "0.21.0", path = "acir", default-features = false }
acir_field = { version = "0.21.0", path = "acir_field", default-features = false }
stdlib = { package = "acvm_stdlib", version = "0.21.0", path = "stdlib", default-features = false }
brillig = { version = "0.21.0", path = "brillig", default-features = false }
blackbox_solver = { package = "acvm_blackbox_solver", version = "0.21.0", path = "blackbox_solver", default-features = false }

bincode = "1.3.3"

Expand Down
11 changes: 11 additions & 0 deletions acir/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [0.21.0](https://github.com/noir-lang/acvm/compare/acir-v0.20.1...acir-v0.21.0) (2023-07-26)


### ⚠ BREAKING CHANGES

* **acvm:** Support stepwise execution of ACIR ([#399](https://github.com/noir-lang/acvm/issues/399))

### Features

* **acvm:** Support stepwise execution of ACIR ([#399](https://github.com/noir-lang/acvm/issues/399)) ([6a03950](https://github.com/noir-lang/acvm/commit/6a0395021779a2711353c2fe2948e09b5b538fc0))

## [0.20.1](https://github.com/noir-lang/acvm/compare/acir-v0.20.0...acir-v0.20.1) (2023-07-26)


Expand Down
2 changes: 1 addition & 1 deletion acir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "acir"
description = "ACIR is the IR that the VM processes, it is analogous to LLVM IR"
version = "0.20.1"
version = "0.21.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
7 changes: 7 additions & 0 deletions acir_field/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.21.0](https://github.com/noir-lang/acvm/compare/acir_field-v0.20.1...acir_field-v0.21.0) (2023-07-26)


### Miscellaneous Chores

* **acir_field:** Synchronize acvm versions

## [0.20.1](https://github.com/noir-lang/acvm/compare/acir_field-v0.20.0...acir_field-v0.20.1) (2023-07-26)


Expand Down
2 changes: 1 addition & 1 deletion acir_field/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "acir_field"
description = "The field implementation being used by ACIR."
version = "0.20.1"
version = "0.21.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
18 changes: 18 additions & 0 deletions acvm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [0.21.0](https://github.com/noir-lang/acvm/compare/acvm-v0.20.1...acvm-v0.21.0) (2023-07-26)


### ⚠ BREAKING CHANGES

* **acvm:** Support stepwise execution of ACIR ([#399](https://github.com/noir-lang/acvm/issues/399))

### Features

* **acvm:** Support stepwise execution of ACIR ([#399](https://github.com/noir-lang/acvm/issues/399)) ([6a03950](https://github.com/noir-lang/acvm/commit/6a0395021779a2711353c2fe2948e09b5b538fc0))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* brillig_vm bumped from 0.20.1 to 0.21.0

## [0.20.1](https://github.com/noir-lang/acvm/compare/acvm-v0.20.0...acvm-v0.20.1) (2023-07-26)


Expand Down
4 changes: 2 additions & 2 deletions acvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "acvm"
description = "The virtual machine that processes ACIR given a backend/proof system."
version = "0.20.1"
version = "0.21.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -17,7 +17,7 @@ thiserror.workspace = true

acir.workspace = true
stdlib.workspace = true
brillig_vm = { version = "0.20.1", path = "../brillig_vm", default-features = false }
brillig_vm = { version = "0.21.0", path = "../brillig_vm", default-features = false }
blackbox_solver.workspace = true

indexmap = "1.7.0"
Expand Down
7 changes: 7 additions & 0 deletions blackbox_solver/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.21.0](https://github.com/noir-lang/acvm/compare/acvm_blackbox_solver-v0.20.1...acvm_blackbox_solver-v0.21.0) (2023-07-26)


### Miscellaneous Chores

* **acvm_blackbox_solver:** Synchronize acvm versions

## [0.20.1](https://github.com/noir-lang/acvm/compare/acvm_blackbox_solver-v0.20.0...acvm_blackbox_solver-v0.20.1) (2023-07-26)


Expand Down
2 changes: 1 addition & 1 deletion blackbox_solver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "acvm_blackbox_solver"
description = "A solver for the blackbox functions found in ACIR and Brillig"
version = "0.20.1"
version = "0.21.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
7 changes: 7 additions & 0 deletions brillig/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.21.0](https://github.com/noir-lang/acvm/compare/brillig-v0.20.1...brillig-v0.21.0) (2023-07-26)


### Miscellaneous Chores

* **brillig:** Synchronize acvm versions

## [0.20.1](https://github.com/noir-lang/acvm/compare/brillig-v0.20.0...brillig-v0.20.1) (2023-07-26)


Expand Down
2 changes: 1 addition & 1 deletion brillig/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "brillig"
description = "Brillig is the bytecode ACIR uses for non-determinism."
version = "0.20.1"
version = "0.21.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
7 changes: 7 additions & 0 deletions brillig_vm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.21.0](https://github.com/noir-lang/acvm/compare/brillig_vm-v0.20.1...brillig_vm-v0.21.0) (2023-07-26)


### Miscellaneous Chores

* **brillig_vm:** Synchronize acvm versions

## [0.20.1](https://github.com/noir-lang/acvm/compare/brillig_vm-v0.20.0...brillig_vm-v0.20.1) (2023-07-26)


Expand Down
2 changes: 1 addition & 1 deletion brillig_vm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "brillig_vm"
description = "The virtual machine that processes Brillig bytecode, used to introduce non-determinism to the ACVM"
version = "0.20.1"
version = "0.21.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
7 changes: 7 additions & 0 deletions stdlib/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.21.0](https://github.com/noir-lang/acvm/compare/acvm_stdlib-v0.20.1...acvm_stdlib-v0.21.0) (2023-07-26)


### Miscellaneous Chores

* **acvm_stdlib:** Synchronize acvm versions

## [0.20.1](https://github.com/noir-lang/acvm/compare/acvm_stdlib-v0.20.0...acvm_stdlib-v0.20.1) (2023-07-26)


Expand Down
2 changes: 1 addition & 1 deletion stdlib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "acvm_stdlib"
description = "The ACVM standard library."
version = "0.20.1"
version = "0.21.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down

0 comments on commit 8b02e0a

Please sign in to comment.