Skip to content

Commit

Permalink
chore: Release 0.0.8 (#48)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Nov 29, 2023
1 parent f3d2a54 commit 20eea64
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.0.7"
".": "0.0.8"
}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [0.0.8](https://github.com/noir-lang/vscode-noir/compare/v0.0.7...v0.0.8) (2023-11-29)


### Features

* add opcodes profile information ([#45](https://github.com/noir-lang/vscode-noir/issues/45)) ([78e529a](https://github.com/noir-lang/vscode-noir/commit/78e529ac0137eda2d98857cc7c7dfa73edab075d))


### Bug Fixes

* document handling ([#49](https://github.com/noir-lang/vscode-noir/issues/49)) ([f3d2a54](https://github.com/noir-lang/vscode-noir/commit/f3d2a5415518ba4c6c11510a5a7002be9e07aba1))

## [0.0.7](https://github.com/noir-lang/vscode-noir/compare/v0.0.6...v0.0.7) (2023-11-18)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 15 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-noir",
"displayName": "Noir Language Support",
"description": "Noir support for Visual Studio Code",
"version": "0.0.7",
"version": "0.0.8",
"publisher": "noir-lang",
"keywords": [
"noir",
Expand Down Expand Up @@ -46,7 +46,7 @@
"when": "noir.profileInfoPresent == true"
}
]
},
},
"snippets": [
{
"language": "noir",
Expand All @@ -73,17 +73,19 @@
"path": "./syntaxes/noir.tmLanguage.json"
}
],
"keybindings": [{
"command": "nargo.profile.hide",
"key": "shift+alt+ctrl+n, shift+p",
"mac": "shift+alt+cmd+n shift+p",
"when": "noir.profileInfoPresent"
},
{
"command": "nargo.profile",
"key": "shift+alt+ctrl+n p",
"mac": "shift+alt+cmd+n p"
}],
"keybindings": [
{
"command": "nargo.profile.hide",
"key": "shift+alt+ctrl+n, shift+p",
"mac": "shift+alt+cmd+n shift+p",
"when": "noir.profileInfoPresent"
},
{
"command": "nargo.profile",
"key": "shift+alt+ctrl+n p",
"mac": "shift+alt+cmd+n p"
}
],
"configuration": {
"type": "object",
"title": "Noir Language Server configuration",
Expand Down

0 comments on commit 20eea64

Please sign in to comment.