-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into jf/fix-1110
* master: (66 commits) feat(nargo)!: retire print-acir in favour of flag (#1328) chore(ssa): enable cse for assert (#1350) chore(ssa refactor): Add basic instruction simplification (#1329) chore(noir): Release 0.6.0 (#1279) feat: enable to_radix for any field element (#1343) chore(ssa refactor): Simplify inlining pass and fix inlining failure (#1337) chore!: Update to acvm 0.11.0 (#1322) feat: Add ECDSA secp256k1 builtin test (#1294) chore: add support for encoding/decoding inputs from JSON (#1325) feat: Issue an error when attempting to use a `return` expression (#1330) chore(ssa refactor): Fix inlining bug (#1335) fix: to-bits and to-radix for > 128 bits (#1312) chore(parser): Parser error optimisation (#1292) chore(ssa refactor): Implement function inlining (#1293) chore: fix installation link in readme (#1326) chore: fix installation link in readme (#1326) feat(stdlib): Add keccak (#1249) fix: Parsing nested generics (#1319) chore(ssa refactor): Document some SSA-gen functions (#1321) fix: Assigning to tuple fields (#1318) ...
- Loading branch information
Showing
197 changed files
with
6,139 additions
and
1,561 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Add/remove 'doc needed' label if issue/PR contains the line '- [x] This PR requires documentation updates when merged.' | ||
"doc needed": | ||
- '- \[x\] This PR requires documentation updates when merged.' | ||
- '- \[(x|X)\] This PR requires documentation updates when merged.' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Notify Doc Needed | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- labeled | ||
- unlabeled | ||
|
||
jobs: | ||
dispatch: | ||
runs-on: ubuntu-latest | ||
if: github.event.label.name == 'doc needed' | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set workflowId environment variable | ||
id: set_workflow_id | ||
run: | | ||
if [[ "${{ github.event.action }}" == "labeled" ]]; then | ||
echo "workflowId=new-migrated-issue.yml" >> $GITHUB_ENV | ||
else | ||
echo "workflowId=delete-migrated-issue.yml" >> $GITHUB_ENV | ||
fi | ||
- name: Dispatch | ||
uses: benc-uk/workflow-dispatch@v1 | ||
with: | ||
workflow: ${{ env.workflowId }} | ||
repo: noir-lang/docs | ||
ref: master | ||
token: ${{ secrets.DOCS_REPO_TOKEN }} | ||
inputs: '{ "pr_number": "${{ github.event.pull_request.number }}" }' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.