Skip to content

Commit 6eafebf

Browse files
authored
3.6.0
1 parent 007b5f3 commit 6eafebf

File tree

7 files changed

+19
-10
lines changed

7 files changed

+19
-10
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
Releases of the extension can be downloaded from
44
[Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=denoland.vscode-deno).
55

6+
- feat: add support for tasks and test code lens (#436)
7+
8+
The Deno Language Server as of Deno 1.11, code lenses for test are sent to the
9+
client, and the extension now supports allowing those tests to be run in the
10+
IDE. In addition, several tasks have been added to the extension which allow
11+
users to setup and configure common Deno CLI tasks via the `tasks.json`.
12+
Checkout out the [testing](./docs/testing.md) and [tasks](./docs/tasks.md)
13+
documentation for more information.
14+
615
### [3.5.1](https://github.com/denoland/vscode_deno/compare/3.5.0...3.5.1) / 2021.06.02
716

817
- fix: bump semver of extension (#429)

client/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"author": "Deno Land Inc.",
55
"license": "MIT",
66
"private": true,
7-
"version": "3.5.1",
7+
"version": "3.6.0",
88
"publisher": "deno-land",
99
"repository": {
1010
"type": "git",

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "A language server client for Deno. Requires Deno 1.8 or better.",
55
"author": "Deno Land Inc.",
66
"license": "MIT",
7-
"version": "3.5.1",
7+
"version": "3.6.0",
88
"icon": "deno.png",
99
"galleryBanner": {
1010
"color": "#3B3738",

typescript-deno-plugin/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

typescript-deno-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"author": "Deno Land Inc.",
55
"license": "MIT",
66
"private": true,
7-
"version": "3.5.1",
7+
"version": "3.6.0",
88
"publisher": "deno-land",
99
"main": "./out/index",
1010
"repository": {

0 commit comments

Comments
 (0)