Skip to content

Commit 2e73cce

Browse files
committed
chore: support Noir 1 beta
1 parent 3f14801 commit 2e73cce

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
toolchain: [0.39.0]
19+
toolchain: [0.39.0, 1.0.0-beta.0]
2020
steps:
2121
- name: Checkout sources
2222
uses: actions/checkout@v4
@@ -38,7 +38,7 @@ jobs:
3838
- name: Install Nargo
3939
uses: noir-lang/noirup@v0.1.3
4040
with:
41-
toolchain: 0.39.0
41+
toolchain: 1.0.0-beta.0
4242

4343
- name: Run formatter
4444
run: nargo fmt --check

Nargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@
22
name = "nodash"
33
type = "lib"
44
authors = ["Oleh Misarosh <olehmisar@gmail.com>"]
5-
compiler_version = ">=0.39.0"
65

76
[dependencies]

README.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,10 @@ Nodash is a utility library for [Noir](https://github.com/noir-lang/noir) langua
66

77
Put this into your Nargo.toml.
88

9-
If you are using Noir:
10-
119
```toml
12-
nodash = { git = "https://github.com/olehmisar/nodash/", tag = "v0.39.2" }
10+
nodash = { git = "https://github.com/olehmisar/nodash/", tag = "v0.39.3" }
1311
```
1412

15-
The version of nodash matches the version of Noir. The patch version may be different if a bugfix or a new feature is added for the same version of Noir. E.g., nodash@v0.39.0 and nodash@v0.39.1 are compatible with noir@v0.39.0.
16-
1713
## Docs
1814

1915
### `sqrt`

0 commit comments

Comments
 (0)