Skip to content

Commit

Permalink
3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed May 12, 2021
1 parent 006a67b commit 1fe0271
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 11 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
Releases of the extension can be downloaded from
[Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=denoland.vscode-deno).

### [3.4.0](https://github.com/denoland/vscode_deno/compare/3.3.0...3.4.0) / 2021.05.11

- feat: handle per resource configuration (#411)

Along with Deno v1.10, the extension now supports vscode's multi-root
workspaces, which will allow you to enable and disable Deno per workspace
folder.

- feat: add `internalDebug` config flag (#406)

Enabling `deno.internalDebug` to `true` will output additional (quite verbose)
logging information to help with diagnosing language server issues. This
requires Deno v1.10 or later to work.

- fix: activate on `reloadImportRegistries` command (#407)
- docs: fix type in `ImportCompletions.md` (#410)

### [3.3.0](https://github.com/denoland/vscode_deno/compare/3.2.0...3.3.0) / 2021.04.13

- feat: add support for import registry completions (#380)
Expand Down
4 changes: 2 additions & 2 deletions client/package-lock.json

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

2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": "Deno Land Inc.",
"license": "MIT",
"private": true,
"version": "3.3.0",
"version": "3.4.0",
"publisher": "deno-land",
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "vscode-deno",
"displayName": "Deno",
"description": "A language server client for Deno. Requires Deno 1.7 or better.",
"description": "A language server client for Deno. Requires Deno 1.8 or better.",
"author": "Deno Land Inc.",
"license": "MIT",
"version": "3.3.0",
"version": "3.4.0",
"icon": "deno.png",
"galleryBanner": {
"color": "#3B3738",
Expand Down
4 changes: 2 additions & 2 deletions typescript-deno-plugin/package-lock.json

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

2 changes: 1 addition & 1 deletion typescript-deno-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": "Deno Land Inc.",
"license": "MIT",
"private": true,
"version": "3.3.0",
"version": "3.4.0",
"publisher": "deno-land",
"main": "./out/index",
"repository": {
Expand Down

0 comments on commit 1fe0271

Please sign in to comment.