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

Commit e63c18a

Browse files
committed
chore: Release 0.17.0
1 parent 9895817 commit e63c18a

File tree

13 files changed

+75
-10
lines changed

13 files changed

+75
-10
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{".":"0.16.0","acir":"0.16.0","acir_field":"0.16.0","acvm":"0.16.0","stdlib":"0.16.0","brillig_vm":"0.16.0"}
1+
{".":"0.17.0","acir":"0.17.0","acir_field":"0.17.0","acvm":"0.17.0","stdlib":"0.17.0","brillig_vm":"0.17.0"}

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.17.0](https://github.com/noir-lang/acvm/compare/root-v0.16.0...root-v0.17.0) (2023-07-07)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* **acir:** add `EcdsaSecp256r1` blackbox function ([#408](https://github.com/noir-lang/acvm/issues/408))
14+
15+
### Features
16+
17+
* **acir:** add `EcdsaSecp256r1` blackbox function ([#408](https://github.com/noir-lang/acvm/issues/408)) ([9895817](https://github.com/noir-lang/acvm/commit/98958170c9fa9b4731e33b31cb494a72bb90549e))
18+
819
## [0.16.0](https://github.com/noir-lang/acvm/compare/root-v0.15.1...root-v0.16.0) (2023-07-06)
920

1021

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ rust-version = "1.66"
1010
repository = "https://github.com/noir-lang/acvm/"
1111

1212
[workspace.dependencies]
13-
acir = { version = "0.16.0", path = "acir", default-features = false }
14-
acir_field = { version = "0.16.0", path = "acir_field", default-features = false }
15-
stdlib = { package = "acvm_stdlib", version = "0.16.0", path = "stdlib", default-features = false }
13+
acir = { version = "0.17.0", path = "acir", default-features = false }
14+
acir_field = { version = "0.17.0", path = "acir_field", default-features = false }
15+
stdlib = { package = "acvm_stdlib", version = "0.17.0", path = "stdlib", default-features = false }
1616

1717
num-bigint = "0.4"
1818
num-traits = "0.2"

acir/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## [0.17.0](https://github.com/noir-lang/acvm/compare/acir-v0.16.0...acir-v0.17.0) (2023-07-07)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **acir:** add `EcdsaSecp256r1` blackbox function ([#408](https://github.com/noir-lang/acvm/issues/408))
9+
10+
### Features
11+
12+
* **acir:** add `EcdsaSecp256r1` blackbox function ([#408](https://github.com/noir-lang/acvm/issues/408)) ([9895817](https://github.com/noir-lang/acvm/commit/98958170c9fa9b4731e33b31cb494a72bb90549e))
13+
14+
15+
### Dependencies
16+
17+
* The following workspace dependencies were updated
18+
* dependencies
19+
* brillig_vm bumped from 0.16.0 to 0.17.0
20+
321
## [0.16.0](https://github.com/noir-lang/acvm/compare/acir-v0.15.1...acir-v0.16.0) (2023-07-06)
422

523

acir/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "acir"
33
description = "ACIR is the IR that the VM processes, it is analogous to LLVM IR"
4-
version = "0.16.0"
4+
version = "0.17.0"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true
@@ -13,7 +13,7 @@ repository.workspace = true
1313
[dependencies]
1414
acir_field.workspace = true
1515
serde.workspace = true
16-
brillig_vm = { version = "0.16.0", path = "../brillig_vm", default-features = false }
16+
brillig_vm = { version = "0.17.0", path = "../brillig_vm", default-features = false }
1717
thiserror.workspace = true
1818

1919
rmp-serde = "1.1.0"

acir_field/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.17.0](https://github.com/noir-lang/acvm/compare/acir_field-v0.16.0...acir_field-v0.17.0) (2023-07-07)
4+
5+
6+
### Miscellaneous Chores
7+
8+
* **acir_field:** Synchronize acvm versions
9+
310
## [0.16.0](https://github.com/noir-lang/acvm/compare/acir_field-v0.15.1...acir_field-v0.16.0) (2023-07-06)
411

512

acir_field/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "acir_field"
33
description = "The field implementation being used by ACIR."
4-
version = "0.16.0"
4+
version = "0.17.0"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true

acvm/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [0.17.0](https://github.com/noir-lang/acvm/compare/acvm-v0.16.0...acvm-v0.17.0) (2023-07-07)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **acir:** add `EcdsaSecp256r1` blackbox function ([#408](https://github.com/noir-lang/acvm/issues/408))
9+
10+
### Features
11+
12+
* **acir:** add `EcdsaSecp256r1` blackbox function ([#408](https://github.com/noir-lang/acvm/issues/408)) ([9895817](https://github.com/noir-lang/acvm/commit/98958170c9fa9b4731e33b31cb494a72bb90549e))
13+
314
## [0.16.0](https://github.com/noir-lang/acvm/compare/acvm-v0.15.1...acvm-v0.16.0) (2023-07-06)
415

516

acvm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "acvm"
33
description = "The virtual machine that processes ACIR given a backend/proof system."
4-
version = "0.16.0"
4+
version = "0.17.0"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true

brillig_vm/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [0.17.0](https://github.com/noir-lang/acvm/compare/brillig_vm-v0.16.0...brillig_vm-v0.17.0) (2023-07-07)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **acir:** add `EcdsaSecp256r1` blackbox function ([#408](https://github.com/noir-lang/acvm/issues/408))
9+
10+
### Features
11+
12+
* **acir:** add `EcdsaSecp256r1` blackbox function ([#408](https://github.com/noir-lang/acvm/issues/408)) ([9895817](https://github.com/noir-lang/acvm/commit/98958170c9fa9b4731e33b31cb494a72bb90549e))
13+
314
## [0.16.0](https://github.com/noir-lang/acvm/compare/brillig_vm-v0.15.1...brillig_vm-v0.16.0) (2023-07-06)
415

516

brillig_vm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "brillig_vm"
33
description = "The virtual machine that processes Brillig bytecode, used to introduce non-determinism to the ACVM"
4-
version = "0.16.0"
4+
version = "0.17.0"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true

stdlib/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.17.0](https://github.com/noir-lang/acvm/compare/acvm_stdlib-v0.16.0...acvm_stdlib-v0.17.0) (2023-07-07)
4+
5+
6+
### Miscellaneous Chores
7+
8+
* **acvm_stdlib:** Synchronize acvm versions
9+
310
## [0.16.0](https://github.com/noir-lang/acvm/compare/acvm_stdlib-v0.15.1...acvm_stdlib-v0.16.0) (2023-07-06)
411

512

stdlib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "acvm_stdlib"
33
description = "The ACVM standard library."
4-
version = "0.16.0"
4+
version = "0.17.0"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true

0 commit comments

Comments
 (0)