Skip to content

Commit

Permalink
3.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Oct 25, 2022
1 parent e7f366f commit e8bac94
Show file tree
Hide file tree
Showing 7 changed files with 79 additions and 69 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
Releases of the extension can be downloaded from
[Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=denoland.vscode-deno).

### [3.14.0](https://github.com/denoland/vscode_deno/compare/3.13.2...3.14.0) / 2022.10.26

- feat: add inlay hint settings (#733)

With versions of Deno that support it (Release 1.27 and later), the extension
now support configuring inlay hints for Deno enabled projects. The settings
are controlled via `deno.inlayHints` and are off by default.

- fix: send inlay hints config on init (#740)

### [3.13.2](https://github.com/denoland/vscode_deno/compare/3.13.1...3.13.2) / 2022.10.09

- fix: deno/tasks expects no parameters (#722)
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.

4 changes: 2 additions & 2 deletions 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.13.2",
"version": "3.14.0",
"publisher": "deno-land",
"repository": {
"type": "git",
Expand All @@ -22,4 +22,4 @@
"@types/vscode": "1.67.0",
"vscode-test": "^1.6.1"
}
}
}
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.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "A language server client for Deno.",
"author": "Deno Land Inc.",
"license": "MIT",
"version": "3.13.2",
"version": "3.14.0",
"icon": "deno.png",
"galleryBanner": {
"color": "#3B3738",
Expand Down
76 changes: 38 additions & 38 deletions typescript-deno-plugin/package-lock.json

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

46 changes: 23 additions & 23 deletions typescript-deno-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"name": "typescript-deno-plugin",
"description": "Deno Language Server Client for VSCode",
"author": "Deno Land Inc.",
"license": "MIT",
"private": true,
"version": "3.13.2",
"publisher": "deno-land",
"main": "./dist/index",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/denoland/vscode_deno"
},
"engines": {
"vscode": "^1.60.0"
},
"devDependencies": {
"typescript": "^4.6.2"
}
}
"name": "typescript-deno-plugin",
"description": "Deno Language Server Client for VSCode",
"author": "Deno Land Inc.",
"license": "MIT",
"private": true,
"version": "3.14.0",
"publisher": "deno-land",
"main": "./dist/index",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/denoland/vscode_deno"
},
"engines": {
"vscode": "^1.60.0"
},
"devDependencies": {
"typescript": "^4.6.2"
}
}

0 comments on commit e8bac94

Please sign in to comment.