Skip to content

Commit 00a9179

Browse files
authored
Merge branch 'AztecProtocol:main' into main
2 parents 4fa7d2d + 4c12583 commit 00a9179

7 files changed

Lines changed: 229 additions & 237 deletions

File tree

.github/workflows/nightly-update.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/checkout@v4
1919

2020
- name: Set up Node.js
21-
uses: actions/setup-node@v3
21+
uses: actions/setup-node@v4
2222
with:
2323
node-version: '22'
2424
cache: 'yarn'

.github/workflows/testnet_scripts.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v3
1818

1919
- name: Set up Node.js
20-
uses: actions/setup-node@v3
20+
uses: actions/setup-node@v4
2121
with:
2222
node-version: '22'
2323
cache: 'yarn' # Optional: cache dependencies for faster builds

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/checkout@v4
1919

2020
- name: Set up Node.js
21-
uses: actions/setup-node@v3
21+
uses: actions/setup-node@v4
2222
with:
2323
node-version: '22'
2424
cache: 'yarn' # Optional: cache dependencies for faster builds
@@ -36,7 +36,7 @@ jobs:
3636

3737
- name: Set Aztec version and start sandbox
3838
run: |
39-
VERSION=0.87.6 aztec-up
39+
VERSION=0.87.8 aztec-up
4040
aztec start --sandbox &
4141
4242
- name: Install project dependencies

Nargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ authors = [ "" ]
55
compiler_version = ">=0.18.0"
66

77
[dependencies]
8-
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v0.87.7", directory = "noir-projects/aztec-nr/aztec" }
8+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v0.87.8", directory = "noir-projects/aztec-nr/aztec" }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ bash -i <(curl -s https://install.aztec.network)
4747
Install the correct version of the toolkit with:
4848

4949
```bash
50-
aztec-up 0.87.7
50+
aztec-up 0.87.8
5151
```
5252

5353
Start the sandbox with:

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@
2525
"update-readme-version": "node ./.github/scripts/update-readme-version.js"
2626
},
2727
"dependencies": {
28-
"@aztec/accounts": "0.87.7",
29-
"@aztec/aztec.js": "0.87.7",
30-
"@aztec/noir-contracts.js": "0.87.7",
31-
"@aztec/protocol-contracts": "0.87.7",
32-
"@aztec/pxe": "0.87.7",
33-
"@aztec/stdlib": "0.87.7"
28+
"@aztec/accounts": "0.87.8",
29+
"@aztec/aztec.js": "0.87.8",
30+
"@aztec/noir-contracts.js": "0.87.8",
31+
"@aztec/protocol-contracts": "0.87.8",
32+
"@aztec/pxe": "0.87.8",
33+
"@aztec/stdlib": "0.87.8"
3434
},
3535
"devDependencies": {
3636
"@types/jest": "^29.5.11",

0 commit comments

Comments
 (0)