From 1bc5dc3369bdeab9118b280289cf9bc0ed536648 Mon Sep 17 00:00:00 2001 From: Colin Nielsen Date: Tue, 22 Aug 2023 16:10:06 -0600 Subject: [PATCH 1/2] build: update to noir v0.10.0 --- .github/workflows/noir.yml | 2 +- Nargo.toml | 4 ++-- README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/noir.yml b/.github/workflows/noir.yml index 7fb6b9b..1fbc92b 100644 --- a/.github/workflows/noir.yml +++ b/.github/workflows/noir.yml @@ -18,7 +18,7 @@ jobs: - name: Install Nargo uses: noir-lang/noirup@v0.1.2 with: - toolchain: v0.8.0 + toolchain: v0.10.1 - name: Run nargo test run: | diff --git a/Nargo.toml b/Nargo.toml index f9f9cc4..7016403 100644 --- a/Nargo.toml +++ b/Nargo.toml @@ -1,9 +1,9 @@ [package] authors = ["@colinnielsen"] -compiler_version = "0.9.0" +compiler_version = "0.10.1" name = "ecrecover" notes = "AMDG" type = "lib" [dependencies] -array_helpers = { tag = "v0.1.0", git = "https://github.com/colinnielsen/noir-array-helpers" } +array_helpers = { tag = "v0.10.0", git = "https://github.com/colinnielsen/noir-array-helpers" } diff --git a/README.md b/README.md index 7def512..8e15491 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ In your `Nargo.toml` file, add the following dependency: ```toml [dependencies] -ecrecover = { tag = "v0.9.0", git = "https://github.com/colinnielsen/ecrecover-noir" } +ecrecover = { tag = "v0.10.1", git = "https://github.com/colinnielsen/ecrecover-noir" } ``` ## Simple Usage From 7e940f4a3449576d5e340dea1bf762eb1cb7d855 Mon Sep 17 00:00:00 2001 From: Colin Nielsen Date: Tue, 22 Aug 2023 16:10:56 -0600 Subject: [PATCH 2/2] ci: scope tests --- .github/workflows/noir.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/noir.yml b/.github/workflows/noir.yml index 1fbc92b..cc0fda7 100644 --- a/.github/workflows/noir.yml +++ b/.github/workflows/noir.yml @@ -2,6 +2,7 @@ name: Noir on: push: + branches: [main] pull_request: branches: [main]