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

Commit 94b890f

Browse files
committed
chore: Release 0.18.0
1 parent 79950e9 commit 94b890f

File tree

13 files changed

+71
-10
lines changed

13 files changed

+71
-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.17.0","acir":"0.17.0","acir_field":"0.17.0","acvm":"0.17.0","stdlib":"0.17.0","brillig_vm":"0.17.0"}
1+
{".":"0.18.0","acir":"0.18.0","acir_field":"0.18.0","acvm":"0.18.0","stdlib":"0.18.0","brillig_vm":"0.18.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.18.0](https://github.com/noir-lang/acvm/compare/root-v0.17.0...root-v0.18.0) (2023-07-08)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* Returns index of failing opcode and transformation mapping ([#412](https://github.com/noir-lang/acvm/issues/412))
14+
15+
### Features
16+
17+
* Returns index of failing opcode and transformation mapping ([#412](https://github.com/noir-lang/acvm/issues/412)) ([79950e9](https://github.com/noir-lang/acvm/commit/79950e943f60e4082e1cf5ec4442aa67ea91aade))
18+
819
## [0.17.0](https://github.com/noir-lang/acvm/compare/root-v0.16.0...root-v0.17.0) (2023-07-07)
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.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 }
13+
acir = { version = "0.18.0", path = "acir", default-features = false }
14+
acir_field = { version = "0.18.0", path = "acir_field", default-features = false }
15+
stdlib = { package = "acvm_stdlib", version = "0.18.0", path = "stdlib", default-features = false }
1616
rmp-serde = "1.1.0"
1717

1818
num-bigint = "0.4"

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.18.0](https://github.com/noir-lang/acvm/compare/acir-v0.17.0...acir-v0.18.0) (2023-07-08)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Returns index of failing opcode and transformation mapping ([#412](https://github.com/noir-lang/acvm/issues/412))
9+
10+
### Features
11+
12+
* Returns index of failing opcode and transformation mapping ([#412](https://github.com/noir-lang/acvm/issues/412)) ([79950e9](https://github.com/noir-lang/acvm/commit/79950e943f60e4082e1cf5ec4442aa67ea91aade))
13+
14+
15+
### Dependencies
16+
17+
* The following workspace dependencies were updated
18+
* dependencies
19+
* brillig_vm bumped from 0.17.0 to 0.18.0
20+
321
## [0.17.0](https://github.com/noir-lang/acvm/compare/acir-v0.16.0...acir-v0.17.0) (2023-07-07)
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.17.0"
4+
version = "0.18.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.17.0", path = "../brillig_vm", default-features = false }
16+
brillig_vm = { version = "0.18.0", path = "../brillig_vm", default-features = false }
1717
thiserror.workspace = true
1818
rmp-serde.workspace = true
1919
flate2 = "1.0.24"

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.18.0](https://github.com/noir-lang/acvm/compare/acir_field-v0.17.0...acir_field-v0.18.0) (2023-07-08)
4+
5+
6+
### Miscellaneous Chores
7+
8+
* **acir_field:** Synchronize acvm versions
9+
310
## [0.17.0](https://github.com/noir-lang/acvm/compare/acir_field-v0.16.0...acir_field-v0.17.0) (2023-07-07)
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.17.0"
4+
version = "0.18.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.18.0](https://github.com/noir-lang/acvm/compare/acvm-v0.17.0...acvm-v0.18.0) (2023-07-08)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Returns index of failing opcode and transformation mapping ([#412](https://github.com/noir-lang/acvm/issues/412))
9+
10+
### Features
11+
12+
* Returns index of failing opcode and transformation mapping ([#412](https://github.com/noir-lang/acvm/issues/412)) ([79950e9](https://github.com/noir-lang/acvm/commit/79950e943f60e4082e1cf5ec4442aa67ea91aade))
13+
314
## [0.17.0](https://github.com/noir-lang/acvm/compare/acvm-v0.16.0...acvm-v0.17.0) (2023-07-07)
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.17.0"
4+
version = "0.18.0"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true

brillig_vm/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.18.0](https://github.com/noir-lang/acvm/compare/brillig_vm-v0.17.0...brillig_vm-v0.18.0) (2023-07-08)
4+
5+
6+
### Miscellaneous Chores
7+
8+
* **brillig_vm:** Synchronize acvm versions
9+
310
## [0.17.0](https://github.com/noir-lang/acvm/compare/brillig_vm-v0.16.0...brillig_vm-v0.17.0) (2023-07-07)
411

512

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.17.0"
4+
version = "0.18.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.18.0](https://github.com/noir-lang/acvm/compare/acvm_stdlib-v0.17.0...acvm_stdlib-v0.18.0) (2023-07-08)
4+
5+
6+
### Miscellaneous Chores
7+
8+
* **acvm_stdlib:** Synchronize acvm versions
9+
310
## [0.17.0](https://github.com/noir-lang/acvm/compare/acvm_stdlib-v0.16.0...acvm_stdlib-v0.17.0) (2023-07-07)
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.17.0"
4+
version = "0.18.0"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true

0 commit comments

Comments
 (0)