-
Notifications
You must be signed in to change notification settings - Fork 200
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 mikeneuder-20230212-1
* master: (223 commits) chore(noir): Release 0.5.0 (#1202) chore(ci): Utilize new workflow to build binaries (#1250) chore(ssa refactor): Fix loading from mutable parameters (#1248) fix(wasm): add std after dependencies (#1245) chore(ssa refactor): Fix no returns & duplicate main (#1243) chore(ssa refactor): Implement intrinsics (#1241) chore(ssa refactor): Implement first-class functions (#1238) chore: address clippy warnings (#1239) chore(ssa refactor): Implement function calls (#1235) chore(ssa refactor): Implement mutable and immutable variables (#1234) chore(ssa refactor): Fix recursive printing of blocks (#1230) feat(noir): added assert keyword (#1227) chore(ssa refactor): Implement ssa-gen for indexing, cast, constrain, if, unary (#1225) feat(noir): added `distinct` keyword (#1219) chore(nargo): update panic message to suggest searching for similar issues (#1224) chore(ssa refactor): Update how instruction result types are retrieved (#1222) chore(ssa refactor): Implement ssa-gen for binary, block, tuple, extract-tuple-field, and semi expressions (#1217) chore: add RUST_BACKTRACE environment variable to nix config (#1216) chore(ssa): Add intial control flow graph (#1200) chore(ssa refactor): Handle codegen for literals (#1209) ...
- Loading branch information
Showing
435 changed files
with
17,240 additions
and
6,434 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 +1,20 @@ | ||
use nix | ||
# Based on https://github.com/direnv/direnv-vscode/blob/158e8302c2594cc0eaa5f8b4f0cafedd4e1c0315/.envrc | ||
|
||
# You can define your system-specific logic (like Git settings or GH tokens) in .envrc.local | ||
# If that logic is usable by other people and might improve development environment, consider | ||
# contributing it to this file! | ||
|
||
source_env_if_exists .envrc.local | ||
|
||
if [[ -z "${SKIP_NIX:-}" ]] && has nix; then | ||
|
||
if nix flake metadata &>/dev/null && has use_flake; then | ||
# use flakes if possible | ||
use flake | ||
|
||
else | ||
# Otherwise fall back to pure nix | ||
use nix | ||
fi | ||
|
||
fi |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,98 @@ | ||
name: Bug Report | ||
description: File a bug report to help us improve. | ||
labels: ["bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Description | ||
Thanks for taking the time to fill out this bug report to help us improve Noir! | ||
- type: textarea | ||
id: aim | ||
attributes: | ||
label: Aim | ||
description: Describe what you tried to achieve. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected behavior | ||
description: Describe what you expected to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: bug | ||
attributes: | ||
label: Bug | ||
description: Describe the bug. Supply error codes / terminal logs if applicable. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: To reproduce | ||
description: Describe the steps to reproduce the behavior. | ||
value: | | ||
1. | ||
2. | ||
3. | ||
4. | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Environment | ||
Specify your versions of Noir releases used. | ||
- type: markdown | ||
attributes: | ||
value: | | ||
### Using Nargo? | ||
- type: dropdown | ||
id: nargo-install | ||
attributes: | ||
label: Installation method | ||
description: How did you install Nargo? | ||
multiple: false | ||
options: | ||
- Binary | ||
- Compiled from source | ||
- type: input | ||
id: nargo-version | ||
attributes: | ||
label: Nargo version | ||
description: What is the output of the `nargo --version` command? | ||
placeholder: "nargo 0.2.0 (git version hash: e927a39dc3d6517f233509b8349dfd9c7f79471d, is dirty: false)" | ||
- type: markdown | ||
attributes: | ||
value: | | ||
### Using TypeScript? | ||
- type: input | ||
id: noir_wasm-version | ||
attributes: | ||
label: "@noir-lang/noir_wasm version" | ||
description: What is the version number? e.g. version in yarn.lock | ||
placeholder: "0.2.0-ca986a4" | ||
- type: input | ||
id: barretenberg-version | ||
attributes: | ||
label: "@noir-lang/barretenberg version" | ||
description: What is the version number? e.g. version in yarn.lock | ||
placeholder: "2.19.0" | ||
- type: input | ||
id: aztec_backend-version | ||
attributes: | ||
label: "@noir-lang/aztec_backend version" | ||
description: What is the version number? e.g. version in yarn.lock | ||
placeholder: "0.12.0" | ||
- type: textarea | ||
id: additional | ||
attributes: | ||
label: Additional context | ||
description: Please provide any additional context that may be applicable. | ||
- type: checkboxes | ||
id: checklist | ||
attributes: | ||
label: Submission Checklist | ||
description: For core contributors. | ||
options: | ||
- label: Once I hit submit, I will assign this issue to the Project Board with the appropriate tags. |
This file was deleted.
Oops, something went wrong.
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,40 @@ | ||
name: Feature request | ||
description: Suggest an idea for this project. | ||
labels: [enhancement] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Description | ||
Thanks for taking the time to fill out this feature request to help us improve Noir! | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Problem | ||
description: Describe the problem your suggestion sets out to solve. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Proposed solution | ||
description: Describe your proposed solution. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: Alternatives considered | ||
description: Describe any alternative solutions you have considered. | ||
- type: textarea | ||
id: additional | ||
attributes: | ||
label: Additional context | ||
description: Please provide any additional context that may be applicable. | ||
- type: checkboxes | ||
id: checklist | ||
attributes: | ||
label: Submission Checklist | ||
description: For core contributors. | ||
options: | ||
- label: Once I hit submit, I will assign this issue to the Project Board with the appropriate tags. |
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
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
Oops, something went wrong.