Skip to content

Commit e0c7b2b

Browse files
committed
chore: Release Noir(1.0.0-beta.2)
1 parent baca790 commit e0c7b2b

File tree

17 files changed

+25
-16
lines changed

17 files changed

+25
-16
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.0.0-beta.1"
2+
".": "1.0.0-beta.2"
33
}

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [1.0.0-beta.2](https://github.com/noir-lang/noir/compare/v1.0.0-beta.1...v1.0.0-beta.2) (2024-12-23)
4+
5+
6+
### Bug Fixes
7+
8+
* Bigint builtins are foreigns ([#6892](https://github.com/noir-lang/noir/issues/6892)) ([a1f9c94](https://github.com/noir-lang/noir/commit/a1f9c949825bac1068a4e00e93e95b0dbfa8b5a7))
9+
* Consistent file_id across installation paths ([#6912](https://github.com/noir-lang/noir/issues/6912)) ([baca790](https://github.com/noir-lang/noir/commit/baca790a7241044c7a1cce1f2aab13a2c5c998a8))
10+
* Remove unnecessary cast in bit-shift ([#6890](https://github.com/noir-lang/noir/issues/6890)) ([011fbc1](https://github.com/noir-lang/noir/commit/011fbc195419df0254af69cfea593291c8f80af3))
11+
312
## [1.0.0-beta.1](https://github.com/noir-lang/noir/compare/v1.0.0-beta.0...v1.0.0-beta.1) (2024-12-20)
413

514

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ resolver = "2"
4040

4141
[workspace.package]
4242
# x-release-please-start-version
43-
version = "1.0.0-beta.1"
43+
version = "1.0.0-beta.2"
4444
# x-release-please-end
4545
authors = ["The Noir Team <[email protected]>"]
4646
edition = "2021"

acvm-repo/acir/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "acir"
33
description = "ACIR is the IR that the VM processes, it is analogous to LLVM IR"
44
# x-release-please-start-version
5-
version = "1.0.0-beta.1"
5+
version = "1.0.0-beta.2"
66
# x-release-please-end
77
authors.workspace = true
88
edition.workspace = true

acvm-repo/acir_field/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "acir_field"
33
description = "The field implementation being used by ACIR."
44
# x-release-please-start-version
5-
version = "1.0.0-beta.1"
5+
version = "1.0.0-beta.2"
66
# x-release-please-end
77
authors.workspace = true
88
edition.workspace = true

acvm-repo/acvm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "acvm"
33
description = "The virtual machine that processes ACIR given a backend/proof system."
44
# x-release-please-start-version
5-
version = "1.0.0-beta.1"
5+
version = "1.0.0-beta.2"
66
# x-release-please-end
77
authors.workspace = true
88
edition.workspace = true

acvm-repo/acvm_js/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "acvm_js"
33
description = "Typescript wrapper around the ACVM allowing execution of ACIR code"
44
# x-release-please-start-version
5-
version = "1.0.0-beta.1"
5+
version = "1.0.0-beta.2"
66
# x-release-please-end
77
authors.workspace = true
88
edition.workspace = true

acvm-repo/acvm_js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@noir-lang/acvm_js",
3-
"version": "1.0.0-beta.1",
3+
"version": "1.0.0-beta.2",
44
"publishConfig": {
55
"access": "public"
66
},

acvm-repo/blackbox_solver/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "acvm_blackbox_solver"
33
description = "A solver for the blackbox functions found in ACIR and Brillig"
44
# x-release-please-start-version
5-
version = "1.0.0-beta.1"
5+
version = "1.0.0-beta.2"
66
# x-release-please-end
77
authors.workspace = true
88
edition.workspace = true

acvm-repo/bn254_blackbox_solver/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "bn254_blackbox_solver"
33
description = "Solvers for black box functions which are specific for the bn254 curve"
44
# x-release-please-start-version
5-
version = "1.0.0-beta.1"
5+
version = "1.0.0-beta.2"
66
# x-release-please-end
77
authors.workspace = true
88
edition.workspace = true

acvm-repo/brillig/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "brillig"
33
description = "Brillig is the bytecode ACIR uses for non-determinism."
44
# x-release-please-start-version
5-
version = "1.0.0-beta.1"
5+
version = "1.0.0-beta.2"
66
# x-release-please-end
77
authors.workspace = true
88
edition.workspace = true

acvm-repo/brillig_vm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "brillig_vm"
33
description = "The virtual machine that processes Brillig bytecode, used to introduce non-determinism to the ACVM"
44
# x-release-please-start-version
5-
version = "1.0.0-beta.1"
5+
version = "1.0.0-beta.2"
66
# x-release-please-end
77
authors.workspace = true
88
edition.workspace = true

compiler/wasm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"contributors": [
44
"The Noir Team <[email protected]>"
55
],
6-
"version": "1.0.0-beta.1",
6+
"version": "1.0.0-beta.2",
77
"license": "(MIT OR Apache-2.0)",
88
"main": "dist/main.js",
99
"types": "./dist/types/src/index.d.cts",

tooling/noir_codegen/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"contributors": [
44
"The Noir Team <[email protected]>"
55
],
6-
"version": "1.0.0-beta.1",
6+
"version": "1.0.0-beta.2",
77
"packageManager": "[email protected]",
88
"license": "(MIT OR Apache-2.0)",
99
"type": "module",

tooling/noir_js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"contributors": [
44
"The Noir Team <[email protected]>"
55
],
6-
"version": "1.0.0-beta.1",
6+
"version": "1.0.0-beta.2",
77
"packageManager": "[email protected]",
88
"license": "(MIT OR Apache-2.0)",
99
"type": "module",

tooling/noir_js_types/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"The Noir Team <[email protected]>"
55
],
66
"packageManager": "[email protected]",
7-
"version": "1.0.0-beta.1",
7+
"version": "1.0.0-beta.2",
88
"license": "(MIT OR Apache-2.0)",
99
"homepage": "https://noir-lang.org/",
1010
"repository": {

tooling/noirc_abi_wasm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"contributors": [
44
"The Noir Team <[email protected]>"
55
],
6-
"version": "1.0.0-beta.1",
6+
"version": "1.0.0-beta.2",
77
"license": "(MIT OR Apache-2.0)",
88
"homepage": "https://noir-lang.org/",
99
"repository": {

0 commit comments

Comments
 (0)