Skip to content

Commit fc0854b

Browse files
committed
chore!: bump deps
1 parent 01d06d8 commit fc0854b

File tree

4 files changed

+31
-30
lines changed

4 files changed

+31
-30
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This plugin automatically manages `nargo` and `bb` versions and compiles Noir on
1717
Install the plugin and Noir dependencies:
1818

1919
```bash
20-
npm install hardhat-noir @noir-lang/[email protected].3 @aztec/bb.js@0.82.3
20+
npm install hardhat-noir @noir-lang/[email protected].6 @aztec/bb.js@0.85.0
2121
```
2222

2323
Import the plugin in your `hardhat.config.ts`:
@@ -36,7 +36,7 @@ const config: HardhatUserConfig = {
3636
settings: { optimizer: { enabled: true, runs: 100000000 } },
3737
},
3838
noir: {
39-
version: "1.0.0-beta.3",
39+
version: "1.0.0-beta.6",
4040
},
4141
};
4242
```
@@ -147,7 +147,7 @@ Configure Noir and Barretenberg (bb) versions in `hardhat.config.ts`:
147147
export default {
148148
noir: {
149149
// Noir version, optional, will use the latest known Noir version by default
150-
version: "1.0.0-beta.3",
150+
version: "1.0.0-beta.6",
151151
},
152152
};
153153
```

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hardhat-noir",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "Hardhat plugin for Noir language",
55
"repository": "github:olehmisar/hardhat-noir",
66
"author": "Oleh Misarosh <[email protected]>",
@@ -31,7 +31,7 @@
3131
"README.md"
3232
],
3333
"devDependencies": {
34-
"@noir-lang/noir_js": "1.0.0-beta.3",
34+
"@noir-lang/noir_js": "1.0.0-beta.6",
3535
"@nomicfoundation/hardhat-ethers": "^3.0.8",
3636
"@types/chai": "^5.0.0",
3737
"@types/mocha": "^10.0.9",
@@ -47,7 +47,7 @@
4747
"hardhat": "^2.0.0"
4848
},
4949
"dependencies": {
50-
"@aztec/bb.js": ">=0.82.0",
50+
"@aztec/bb.js": ">=0.85.0",
5151
"glob": "^11.0.0",
5252
"zod": "^3.23.8"
5353
}

pnpm-lock.yaml

Lines changed: 24 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const TEST_NOIR_VERSION = "1.0.0-beta.3";
1+
export const TEST_NOIR_VERSION = "1.0.0-beta.6";

0 commit comments

Comments
 (0)