From 18cf6d3f46a9c23c83ddd20b1979dba4ae6b281d Mon Sep 17 00:00:00 2001 From: Savio <72797635+Savio-Sou@users.noreply.github.com> Date: Thu, 21 Aug 2025 19:14:56 +0000 Subject: [PATCH] chore(bbup): Update lookup URL from master to next Update bbup to look for Noir version compatibilities from the _next_ branch instead of the _master_ branch. --- barretenberg/bbup/bbup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/barretenberg/bbup/bbup b/barretenberg/bbup/bbup index 55f7ed046ca9..29d81be28f41 100755 --- a/barretenberg/bbup/bbup +++ b/barretenberg/bbup/bbup @@ -48,7 +48,7 @@ get_bb_version_for_noir() { fi fi - local lookup_url="https://raw.githubusercontent.com/AztecProtocol/aztec-packages/master/barretenberg/bbup/bb-versions.json" + local lookup_url="https://raw.githubusercontent.com/AztecProtocol/aztec-packages/next/barretenberg/bbup/bb-versions.json" # Extract BB version from install script local bb_version=$(curl --fail -s "$lookup_url" | jq -r --arg version "$resolved_version" '.[$version]')