-
Notifications
You must be signed in to change notification settings - Fork 298
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[1 changes] fix!: Infer globals to be u32 when used in a type (noir-l…
…ang/noir#6083) fix: Fix comptime type formatting (noir-lang/noir#6079) fix: don't crash on untyped global used as array length (noir-lang/noir#6076) feat(perf): Remove unused loads in mem2reg and last stores per function (noir-lang/noir#5925) fix: Correct stack trace order in comptime assertion failures (noir-lang/noir#6066) chore!: removing implicit numeric generics (noir-lang/noir#5837) fix: Always parse all tokens from quoted token streams (noir-lang/noir#6064) fix: Update databus in flattening (noir-lang/noir#6063) fix: Be more lenient with semicolons on interned expressions (noir-lang/noir#6062) feat: check unconstrained trait impl method matches (noir-lang/noir#6057) chore: remove unused TypeVariableKind::Constant (noir-lang/noir#6053)
- Loading branch information
Showing
333 changed files
with
18,572 additions
and
1,807 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
9bf2dcbf166f9ffd97c369c0de3d95329c850d47 | ||
78262c96d5b116c77e50653f9059da60824db812 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
".": "0.33.0", | ||
"acvm-repo": "0.49.0" | ||
".": "0.34.0", | ||
"acvm-repo": "0.50.0" | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,7 @@ resolver = "2" | |
|
||
[workspace.package] | ||
# x-release-please-start-version | ||
version = "0.33.0" | ||
version = "0.34.0" | ||
# x-release-please-end | ||
authors = ["The Noir Team <[email protected]>"] | ||
edition = "2021" | ||
|
@@ -59,13 +59,13 @@ unused_qualifications = "warn" | |
[workspace.dependencies] | ||
|
||
# ACVM workspace dependencies | ||
acir_field = { version = "0.49.0", path = "acvm-repo/acir_field", default-features = false } | ||
acir = { version = "0.49.0", path = "acvm-repo/acir", default-features = false } | ||
acvm = { version = "0.49.0", path = "acvm-repo/acvm" } | ||
brillig = { version = "0.49.0", path = "acvm-repo/brillig", default-features = false } | ||
brillig_vm = { version = "0.49.0", path = "acvm-repo/brillig_vm", default-features = false } | ||
acvm_blackbox_solver = { version = "0.49.0", path = "acvm-repo/blackbox_solver", default-features = false } | ||
bn254_blackbox_solver = { version = "0.49.0", path = "acvm-repo/bn254_blackbox_solver", default-features = false } | ||
acir_field = { version = "0.50.0", path = "acvm-repo/acir_field", default-features = false } | ||
acir = { version = "0.50.0", path = "acvm-repo/acir", default-features = false } | ||
acvm = { version = "0.50.0", path = "acvm-repo/acvm" } | ||
brillig = { version = "0.50.0", path = "acvm-repo/brillig", default-features = false } | ||
brillig_vm = { version = "0.50.0", path = "acvm-repo/brillig_vm", default-features = false } | ||
acvm_blackbox_solver = { version = "0.50.0", path = "acvm-repo/blackbox_solver", default-features = false } | ||
bn254_blackbox_solver = { version = "0.50.0", path = "acvm-repo/bn254_blackbox_solver", default-features = false } | ||
|
||
# Noir compiler workspace dependencies | ||
fm = { path = "compiler/fm" } | ||
|
Oops, something went wrong.