Skip to content

Commit 7dff8c4

Browse files
committed
chore: Release Noir(1.0.0-rc.0)
1 parent 454bcb4 commit 7dff8c4

20 files changed

Lines changed: 88 additions & 19 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.0.0-beta.26"
2+
".": "1.0.0-rc.0"
33
}

CHANGELOG.md

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

3+
## [1.0.0-rc.0](https://github.com/noir-lang/noir/compare/v1.0.0-beta.26...v1.0.0-rc.0) (2026-09-07)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* remove the bytecode-size comparison scripts ([#13606](https://github.com/noir-lang/noir/issues/13606))
9+
10+
### Features
11+
12+
* **acir_gen:** Bias disabled-branch array_get fallback to a type-compatible flat offset ([#13466](https://github.com/noir-lang/noir/issues/13466)) ([1718fa5](https://github.com/noir-lang/noir/commit/1718fa5280eadd0610cae69b06527942c8ab7ebd))
13+
* **ast_fuzzer:** Generate arrays with non-homogeneous element types ([#13473](https://github.com/noir-lang/noir/issues/13473)) ([2702a1e](https://github.com/noir-lang/noir/commit/2702a1e82e6e146119a65a39fb4f794a93536a50))
14+
* **ast_fuzzer:** Generate doomed conditional branches ([#13490](https://github.com/noir-lang/noir/issues/13490)) ([3554591](https://github.com/noir-lang/noir/commit/3554591b911582a8a7ed0b921556945eb54f347d))
15+
* **fuzzer:** Widen AST fuzzer generation and stop first-failure shielding ([#13476](https://github.com/noir-lang/noir/issues/13476)) ([0d2074e](https://github.com/noir-lang/noir/commit/0d2074e8ca9c70a9d44d931687a71e438600139c))
16+
* **ssa:** Check purity contracts during SSA interpretation ([#13518](https://github.com/noir-lang/noir/issues/13518)) ([14e9dc3](https://github.com/noir-lang/noir/commit/14e9dc36b518b1a79fa97b97ed95246b97e33449))
17+
* **ssa:** Reject an unprotected in-place mutation of a global in the RC-invariant verifier ([#13554](https://github.com/noir-lang/noir/issues/13554)) ([49daec7](https://github.com/noir-lang/noir/commit/49daec78d797347829a5c4678f6516a67b39947a))
18+
* **stdlib:** Wrap comptime tuple-returning APIs in named structs ([#13550](https://github.com/noir-lang/noir/issues/13550)) ([7001b28](https://github.com/noir-lang/noir/commit/7001b28397a7df48f38f9d6ff7a11fa5e80de4a8))
19+
* Version ABI and artifact schemas ([#13572](https://github.com/noir-lang/noir/issues/13572)) ([b2d9352](https://github.com/noir-lang/noir/commit/b2d9352a124752c7724a0091659a4d8514fb10bf))
20+
21+
22+
### Bug Fixes
23+
24+
* `nargo expand` bugs behind ignored integration tests ([#13438](https://github.com/noir-lang/noir/issues/13438)) ([8b4830b](https://github.com/noir-lang/noir/commit/8b4830be44a99620dcf008f2ce4563dacce98a90))
25+
* **acir_gen:** Do not alias source memory block from zero-width array_set result ([#13547](https://github.com/noir-lang/noir/issues/13547)) ([8417530](https://github.com/noir-lang/noir/commit/84175309cea1d72c97aeb3c121e6d7f00c894684))
26+
* **acir_gen:** Emit an unsatisfiable constraint for unreachable terminators ([#13541](https://github.com/noir-lang/noir/issues/13541)) ([309f40f](https://github.com/noir-lang/noir/commit/309f40ff30eb032624ab27b57b3215620d4232f8))
27+
* **acir_gen:** Fold array reads at an index only ACIR gen knows is constant ([#13444](https://github.com/noir-lang/noir/issues/13444)) ([2f2ea63](https://github.com/noir-lang/noir/commit/2f2ea63fd7c91922f6d6b604a53a6bcde1866279))
28+
* **acir_gen:** Skip array_set memory-block init when store value has zero flattened width ([#13546](https://github.com/noir-lang/noir/issues/13546)) ([4f2a58b](https://github.com/noir-lang/noir/commit/4f2a58b70eaf74964c782784a2955fd76b9c99ae))
29+
* **acir:** Guard empty vector pop/remove on the semantic length ([#13501](https://github.com/noir-lang/noir/issues/13501)) ([0b5f5ca](https://github.com/noir-lang/noir/commit/0b5f5ca01cfcddb8a2590a3854b7625542c083cc))
30+
* **acvm:** Enforce all-or-nothing scalar limbs in MultiScalarMul ([#13512](https://github.com/noir-lang/noir/issues/13512)) ([c6b4e22](https://github.com/noir-lang/noir/commit/c6b4e226fbd2641c481a60a43c58cf1ecf6726f4))
31+
* Array nested via array_set must not be mutated ([#13524](https://github.com/noir-lang/noir/issues/13524)) ([5d03f42](https://github.com/noir-lang/noir/commit/5d03f42ead67ccd1aae768301b6a33adb1574089))
32+
* Array_index_needs_explicit_oob_check must consider flattened size ([#13462](https://github.com/noir-lang/noir/issues/13462)) ([d94a1ea](https://github.com/noir-lang/noir/commit/d94a1eac87c1631626977d6fd12d6d20f289439d))
33+
* **ast_fuzzer:** Bound literal vector indices, and diagnose leftover ACIR memory operations ([#13478](https://github.com/noir-lang/noir/issues/13478)) ([0232934](https://github.com/noir-lang/noir/commit/02329347d2fd7513e19e1739daa187570ecfb4a5))
34+
* **brillig:** Emit a trap for unreachable terminators ([#13448](https://github.com/noir-lang/noir/issues/13448)) ([030e0d4](https://github.com/noir-lang/noir/commit/030e0d47470f54ec18b7005bc3cc0bc6952fd4a9))
35+
* Check u128 ops overflow in SSA interpreter ([#13469](https://github.com/noir-lang/noir/issues/13469)) ([9198bab](https://github.com/noir-lang/noir/commit/9198bab82bd38645303b4e9d8faa968392dd4cef))
36+
* **ci:** Clear stale Criterion baselines before running ACVM benchmarks ([#13497](https://github.com/noir-lang/noir/issues/13497)) ([b7d9395](https://github.com/noir-lang/noir/commit/b7d93959093528ccfeb96f5dc0727084917df4e2))
37+
* **ci:** Close truncated expression in nightly fuzz workflow ([#13458](https://github.com/noir-lang/noir/issues/13458)) ([940e8cc](https://github.com/noir-lang/noir/commit/940e8cc7aea71a93d812739607c6f55340867f8c))
38+
* Correctly validate array_get/array_set target array ([#13545](https://github.com/noir-lang/noir/issues/13545)) ([c6c0256](https://github.com/noir-lang/noir/commit/c6c02569f20efe928f3721c7193b40c92ee7e2a0))
39+
* Derive force_unconstrained per position instead of pass-wide ([#13464](https://github.com/noir-lang/noir/issues/13464)) ([8ae8f25](https://github.com/noir-lang/noir/commit/8ae8f2581236db224371adf192c9220cc96bafe0))
40+
* Disallow `&mut (*x)` when x is not a mutable reference ([#13447](https://github.com/noir-lang/noir/issues/13447)) ([0aee828](https://github.com/noir-lang/noir/commit/0aee828af2aea271d2eff91e956f51639951d1c3))
41+
* Do not resolve a safe-index array read as a disabled access ([#13486](https://github.com/noir-lang/noir/issues/13486)) ([0e921dd](https://github.com/noir-lang/noir/commit/0e921dd132ca008bb86f6e4284b36ca3c94497dd))
42+
* Don't consider &mut x as a last use in a call if x is used in another argument ([#13446](https://github.com/noir-lang/noir/issues/13446)) ([86ced11](https://github.com/noir-lang/noir/commit/86ced112ba77bec140fc51802f27d44b32d8a119))
43+
* Don't deduplicate vector intrinsics in brillig ([#13536](https://github.com/noir-lang/noir/issues/13536)) ([526c684](https://github.com/noir-lang/noir/commit/526c684add657939b878436563093e06ab980b37))
44+
* Escape `nargo expand`'s string and format string literals correctly ([#13567](https://github.com/noir-lang/noir/issues/13567)) ([0cfabee](https://github.com/noir-lang/noir/commit/0cfabee5769b62020e2f38aa15eae69448a507bb))
45+
* **fmt:** Do not desynchronize on a shift operator or a negative zero ([#13496](https://github.com/noir-lang/noir/issues/13496)) ([f078538](https://github.com/noir-lang/noir/commit/f078538b29fd3977e65240048b3902cd442e3d90))
46+
* **fmt:** Terminate line comments before appending more output to the line ([#13480](https://github.com/noir-lang/noir/issues/13480)) ([c5fc641](https://github.com/noir-lang/noir/commit/c5fc641319126bf49ce37424586ef887ecac89b5))
47+
* **fuzzer:** Compare format-string tokens without their source locations ([#13495](https://github.com/noir-lang/noir/issues/13495)) ([e088a9e](https://github.com/noir-lang/noir/commit/e088a9e76b8cbda40b35bebcabb981ffd6c70483))
48+
* **fuzzer:** Declare `str::as_bytes` in the comptime elaboration shim ([#13513](https://github.com/noir-lang/noir/issues/13513)) ([57bf480](https://github.com/noir-lang/noir/commit/57bf480c1ddff4cd674d17e63cddc2a8eef11b59))
49+
* **noir_codegen:** Emit type-only InputMap import ([#13556](https://github.com/noir-lang/noir/issues/13556)) ([6dec731](https://github.com/noir-lang/noir/commit/6dec731376594a7a69cd6dc9c3ce46571724f05c))
50+
* **ownership:** Clear the enclosing killed set when a while condition contains break or continue ([#13523](https://github.com/noir-lang/noir/issues/13523)) ([27a35ca](https://github.com/noir-lang/noir/commit/27a35cac9509a60982c8368711d25fa0b68b71a4))
51+
* Revert [#12104](https://github.com/noir-lang/noir/issues/12104) ([#13510](https://github.com/noir-lang/noir/issues/13510)) ([19b1fdb](https://github.com/noir-lang/noir/commit/19b1fdbf546dd4a5da7e9798dcca3b5832f768c0))
52+
* **ssa:** Align empty-vector pop assertion messages ([#13443](https://github.com/noir-lang/noir/issues/13443)) ([2927dc4](https://github.com/noir-lang/noir/commit/2927dc4d5609af479155b24f10a1ae7b8104a1d5))
53+
* **ssa:** Decide clone elision in the ownership pass, keeping clones mutated by sibling arguments ([#13520](https://github.com/noir-lang/noir/issues/13520)) ([0424184](https://github.com/noir-lang/noir/commit/04241845648a12299e490a8f1119a0e6e02f4249))
54+
* **ssa:** Keep preserved reference aliases across a scalar array_set ([#13525](https://github.com/noir-lang/noir/issues/13525)) ([bfcb6f2](https://github.com/noir-lang/noir/commit/bfcb6f27383c844be3bf34c4b0002cd2e377f8bc))
55+
* **ssa:** Let constant folding replace a `&T` result with the `&mut T` cell it reads ([#13514](https://github.com/noir-lang/noir/issues/13514)) ([da90b52](https://github.com/noir-lang/noir/commit/da90b5279d776bedec6dc3726e53bab8eb814b0c))
56+
* **ssa:** Make reference mutability directional and meaningful in SSA ([#13435](https://github.com/noir-lang/noir/issues/13435)) ([5f65381](https://github.com/noir-lang/noir/commit/5f65381ee789f7efba8ce7afa7f74a1ac813af6b))
57+
* **ssa:** Mark Brillig functions calling a vector mutator on an array input as impure ([#13479](https://github.com/noir-lang/noir/issues/13479)) ([44aab2d](https://github.com/noir-lang/noir/commit/44aab2db1561d8cbd31a54bd39c3d7c4bcd5925e))
58+
* **ssa:** Never mutate a global's storage in place in the SSA interpreter ([#13553](https://github.com/noir-lang/noir/issues/13553)) ([ead45a5](https://github.com/noir-lang/noir/commit/ead45a52af7d89c28fb00fca3cd254782e153df9))
59+
* **ssa:** Orient branch-argument merges so the result takes the weaker reference type ([#13475](https://github.com/noir-lang/noir/issues/13475)) ([2bfc676](https://github.com/noir-lang/noir/commit/2bfc6762ac4cbc09a16416d526c8c6ef5e88ed66))
60+
* **ssa:** Queue every entry point for SSA generation, not just main ([#13511](https://github.com/noir-lang/noir/issues/13511)) ([3403f5b](https://github.com/noir-lang/noir/commit/3403f5b3488dcc69deb1751655cc6f37edf9b6f7))
61+
* **ssa:** Run simplify_cfg to a fixed point so no constant-condition jmpif survives ([#13515](https://github.com/noir-lang/noir/issues/13515)) ([f490b3f](https://github.com/noir-lang/noir/commit/f490b3ff4b7104c1ebbcb82592ca7ab250ecbd5f))
62+
* **ssa:** Scope LICM outer induction bounds to nested loops ([#13481](https://github.com/noir-lang/noir/issues/13481)) ([4bcac14](https://github.com/noir-lang/noir/commit/4bcac14457bb2560510d81f53314ce88fe3d4984))
63+
* **ssa:** Visit each value once when decomposing a constraint ([#13516](https://github.com/noir-lang/noir/issues/13516)) ([9dfde92](https://github.com/noir-lang/noir/commit/9dfde92fe4020934c80855b3fb4f6fc2164445cc))
64+
* Vector_push_front is PureWithPredicate ([#13445](https://github.com/noir-lang/noir/issues/13445)) ([83fa188](https://github.com/noir-lang/noir/commit/83fa188968f0a2220fa51382eb274ea822b53a9a))
65+
66+
67+
### Miscellaneous Chores
68+
69+
* Remove the bytecode-size comparison scripts ([#13606](https://github.com/noir-lang/noir/issues/13606)) ([54a3e67](https://github.com/noir-lang/noir/commit/54a3e6747e29dd4b23f9479d663983c02cbd0839))
70+
* Switch release-please prerelease tag from beta to rc ([d89d99a](https://github.com/noir-lang/noir/commit/d89d99a9442295afa676633d9433291377f7d3b2))
71+
372
## [1.0.0-beta.26](https://github.com/noir-lang/noir/compare/v1.0.0-beta.25...v1.0.0-beta.26) (2026-07-29)
473

574

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ resolver = "2"
6363

6464
[workspace.package]
6565
# x-release-please-start-version
66-
version = "1.0.0-beta.26"
66+
version = "1.0.0-rc.0"
6767
# x-release-please-end
6868
authors = ["The Noir Team <team@noir-lang.org>"]
6969
edition = "2024"

acvm-repo/acir/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.26"
5+
version = "1.0.0-rc.0"
66
# x-release-please-end
77
authors.workspace = true
88
edition.workspace = true

acvm-repo/acir_field/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.26"
5+
version = "1.0.0-rc.0"
66
# x-release-please-end
77
authors.workspace = true
88
edition.workspace = true

acvm-repo/acvm/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.26"
5+
version = "1.0.0-rc.0"
66
# x-release-please-end
77
authors.workspace = true
88
edition.workspace = true

acvm-repo/acvm_js/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.26"
5+
version = "1.0.0-rc.0"
66
# x-release-please-end
77
authors.workspace = true
88
edition.workspace = true

acvm-repo/acvm_js/package.json

Lines changed: 1 addition & 1 deletion
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.26",
3+
"version": "1.0.0-rc.0",
44
"publishConfig": {
55
"access": "public"
66
},

acvm-repo/blackbox_solver/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.26"
5+
version = "1.0.0-rc.0"
66
# x-release-please-end
77
authors.workspace = true
88
edition.workspace = true

acvm-repo/bn254_blackbox_solver/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.26"
5+
version = "1.0.0-rc.0"
66
# x-release-please-end
77
authors.workspace = true
88
edition.workspace = true

0 commit comments

Comments
 (0)