Skip to content

Commit

Permalink
chore(release): 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jnoortheen committed Sep 10, 2024
1 parent 4913819 commit d3a533c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.3.4](https://github.com/nix-community/vscode-nix-ide/compare/v0.3.3...v0.3.4) (2024-09-10)


### Features

* add setting to suppress error notifications ([4913819](https://github.com/nix-community/vscode-nix-ide/commit/4913819384f2fe70e15ea7c814a739926a5d1280))

### [0.3.3](https://github.com/nix-community/vscode-nix-ide/compare/v0.3.2...v0.3.3) (2024-08-02)


Expand Down
11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nix-ide",
"displayName": "Nix IDE",
"description": "Nix language support - syntax highlighting, formatting, and error reporting.",
"version": "0.3.3",
"version": "0.3.4",
"publisher": "jnoortheen",
"icon": "images/icon.png",
"license": "MIT",
Expand Down Expand Up @@ -98,11 +98,16 @@
},
"nix.hiddenLanguageServerErrors": {
"type": "array",
"items": { "type": "string" },
"items": {
"type": "string"
},
"default": [],
"description": "Error notifications from the language server for these request types will be suppressed.",
"examples": [
[ "textDocument/definition", "textDocument/documentSymbol" ]
[
"textDocument/definition",
"textDocument/documentSymbol"
]
]
}
}
Expand Down

0 comments on commit d3a533c

Please sign in to comment.