Skip to content

Commit

Permalink
feat: Sync from noir (#8540)
Browse files Browse the repository at this point in the history
Automated pull of development from the
[noir](https://github.com/noir-lang/noir) programming language, a
dependency of Aztec.
BEGIN_COMMIT_OVERRIDE
fix: disable side-effects for no_predicates functions
(noir-lang/noir#6027)
feat: default to outputting witness with file named after package
(noir-lang/noir#6031)
feat: Add a `comptime` string type for string handling at compile-time
(noir-lang/noir#6026)
feat: let LSP suggest trait impl methods as you are typing them
(noir-lang/noir#6029)
chore: Release Noir(0.34.0)
(noir-lang/noir#5692)
feat: Sync from aztec-packages
(noir-lang/noir#6028)
END_COMMIT_OVERRIDE
  • Loading branch information
AztecBot authored Sep 13, 2024
1 parent 78c94a4 commit cd7983a
Show file tree
Hide file tree
Showing 197 changed files with 15,053 additions and 570 deletions.
2 changes: 1 addition & 1 deletion .noir-sync-commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9bf2dcbf166f9ffd97c369c0de3d95329c850d47
fc74c55ffed892962413c6fe15af62e1d2e7b785
20 changes: 10 additions & 10 deletions avm-transpiler/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ authors = [""]
compiler_version = ">=0.30.0"

[dependencies]
bigint = {tag = "tf/update-to-le-bytes", git = "https://github.com/noir-lang/noir-bignum" }
bigint = {tag = "v0.3.3", git = "https://github.com/noir-lang/noir-bignum" }
2 changes: 1 addition & 1 deletion noir/bb-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.51.1
0.55.0
4 changes: 2 additions & 2 deletions noir/noir-repo/.release-please-manifest.json
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"
}
207 changes: 207 additions & 0 deletions noir/noir-repo/CHANGELOG.md

Large diffs are not rendered by default.

58 changes: 29 additions & 29 deletions noir/noir-repo/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions noir/noir-repo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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" }
Expand Down
Loading

0 comments on commit cd7983a

Please sign in to comment.