Skip to content

Commit ee1c36c

Browse files
committed
chore: bump to bb 1.2.0
1 parent 69d74d8 commit ee1c36c

File tree

4 files changed

+63
-63
lines changed

4 files changed

+63
-63
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].6 @aztec/bb.js@0.87.8
20+
npm install hardhat-noir @noir-lang/[email protected].11 @aztec/bb.js@1.2.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.6",
39+
version: "1.0.0-beta.11",
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.6",
150+
version: "1.0.0-beta.11",
151151
},
152152
};
153153
```

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hardhat-noir",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "Hardhat plugin for Noir language",
55
"repository": "github:olehmisar/hardhat-noir",
66
"author": "Oleh Misarosh <[email protected]>",
@@ -31,23 +31,23 @@
3131
"README.md"
3232
],
3333
"devDependencies": {
34-
"@noir-lang/noir_js": "1.0.0-beta.6",
34+
"@noir-lang/noir_js": "1.0.0-beta.11",
3535
"@nomicfoundation/hardhat-ethers": "^3.0.8",
3636
"@types/chai": "^5.0.0",
3737
"@types/mocha": "^10.0.9",
38-
"@types/node": "^22.7.9",
38+
"@types/node": "^24.7.1",
3939
"chai": "^4.2.0",
4040
"hardhat": "^2.0.0",
4141
"mocha": "^10.7.3",
4242
"prettier": "3.3.3",
4343
"ts-node": "^10.9.2",
44-
"typescript": "^5.6.3"
44+
"typescript": "^5.9.3"
4545
},
4646
"peerDependencies": {
4747
"hardhat": "^2.0.0"
4848
},
4949
"dependencies": {
50-
"@aztec/bb.js": ">=0.87.8",
50+
"@aztec/bb.js": "^1.2.0",
5151
"glob": "^11.0.0",
5252
"zod": "^3.23.8"
5353
}

pnpm-lock.yaml

Lines changed: 54 additions & 54 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.6";
1+
export const TEST_NOIR_VERSION = "1.0.0-beta.11";

0 commit comments

Comments
 (0)