Skip to content

Commit 965878b

Browse files
committed
chore: Release Noir(1.0.0-beta.0)
1 parent 8e046af commit 965878b

File tree

17 files changed

+43
-16
lines changed

17 files changed

+43
-16
lines changed

.release-please-manifest.json

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

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Changelog
22

3+
## [1.0.0-beta.0](https://github.com/noir-lang/noir/compare/v0.39.0...v1.0.0-beta.0) (2024-11-22)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* remove eddsa from stdlib ([#6591](https://github.com/noir-lang/noir/issues/6591))
9+
10+
### Features
11+
12+
* Avoid incrementing reference counts in some cases ([#6568](https://github.com/noir-lang/noir/issues/6568)) ([01c4a9f](https://github.com/noir-lang/noir/commit/01c4a9fb62ffe2190c73f0d5b12933d2eb8f6b5d))
13+
* **ssa:** Loop invariant code motion ([#6563](https://github.com/noir-lang/noir/issues/6563)) ([7216f08](https://github.com/noir-lang/noir/commit/7216f0829dcece948d3243471e6d57380522e997))
14+
* Trait aliases ([#6431](https://github.com/noir-lang/noir/issues/6431)) ([68c32b4](https://github.com/noir-lang/noir/commit/68c32b4ffd9b069fe4b119327dbf4018c17ab9d4))
15+
* Try to inline brillig calls with all constant arguments ([#6548](https://github.com/noir-lang/noir/issues/6548)) ([e4c66b9](https://github.com/noir-lang/noir/commit/e4c66b91d42b20d17837fe5e7c32c9a83b6ab354))
16+
17+
18+
### Bug Fixes
19+
20+
* Consider prereleases to be compatible with pre-1.0.0 releases ([#6580](https://github.com/noir-lang/noir/issues/6580)) ([013e200](https://github.com/noir-lang/noir/commit/013e2000f1d7e7346b5cac0427732d545f501444))
21+
* Correct type when simplifying `derive_pedersen_generators` ([#6579](https://github.com/noir-lang/noir/issues/6579)) ([efa5cc4](https://github.com/noir-lang/noir/commit/efa5cc4bf173b0ce49f47b1954165a2bdb276792))
22+
* Remove `compiler_version` from new `Nargo.toml` ([#6590](https://github.com/noir-lang/noir/issues/6590)) ([df8f2ee](https://github.com/noir-lang/noir/commit/df8f2eee5c27d3cd4b6128056afdd9bd4a0322fe))
23+
24+
25+
### Miscellaneous Chores
26+
27+
* Remove eddsa from stdlib ([#6591](https://github.com/noir-lang/noir/issues/6591)) ([8e046af](https://github.com/noir-lang/noir/commit/8e046afbbe3fba06c1e177f74aacefdd1bf871b6))
28+
* Switch to 1.0.0-beta versioning ([#6503](https://github.com/noir-lang/noir/issues/6503)) ([44e7dc1](https://github.com/noir-lang/noir/commit/44e7dc1037b047db866af675cd8caa0fc8aee324))
29+
330
## [0.39.0](https://github.com/noir-lang/noir/compare/v0.38.0...v0.39.0) (2024-11-19)
431

532

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 = "0.39.0"
43+
version = "1.0.0-beta.0"
4444
# x-release-please-end
4545
authors = ["The Noir Team <team@noir-lang.org>"]
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 = "0.55.0"
5+
version = "1.0.0-beta.0"
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 = "0.55.0"
5+
version = "1.0.0-beta.0"
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 = "0.55.0"
5+
version = "1.0.0-beta.0"
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 = "0.55.0"
5+
version = "1.0.0-beta.0"
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": "0.55.0",
3+
"version": "1.0.0-beta.0",
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 = "0.55.0"
5+
version = "1.0.0-beta.0"
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 = "0.55.0"
5+
version = "1.0.0-beta.0"
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 = "0.55.0"
5+
version = "1.0.0-beta.0"
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 = "0.55.0"
5+
version = "1.0.0-beta.0"
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 <team@noir-lang.org>"
55
],
6-
"version": "0.39.0",
6+
"version": "1.0.0-beta.0",
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 <team@noir-lang.org>"
55
],
6-
"version": "0.39.0",
6+
"version": "1.0.0-beta.0",
77
"packageManager": "yarn@3.5.1",
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 <team@noir-lang.org>"
55
],
6-
"version": "0.39.0",
6+
"version": "1.0.0-beta.0",
77
"packageManager": "yarn@3.5.1",
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 <team@noir-lang.org>"
55
],
66
"packageManager": "yarn@3.5.1",
7-
"version": "0.39.0",
7+
"version": "1.0.0-beta.0",
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 <team@noir-lang.org>"
55
],
6-
"version": "0.39.0",
6+
"version": "1.0.0-beta.0",
77
"license": "(MIT OR Apache-2.0)",
88
"homepage": "https://noir-lang.org/",
99
"repository": {

0 commit comments

Comments
 (0)