Skip to content

Commit

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

- feat: add support for tasks and test code lens (#436)

The Deno Language Server as of Deno 1.11, code lenses for test are sent to the
client, and the extension now supports allowing those tests to be run in the
IDE. In addition, several tasks have been added to the extension which allow
users to setup and configure common Deno CLI tasks via the `tasks.json`.
Checkout out the [testing](./docs/testing.md) and [tasks](./docs/tasks.md)
documentation for more information.

### [3.5.1](https://github.com/denoland/vscode_deno/compare/3.5.0...3.5.1) / 2021.06.02

- fix: bump semver of extension (#429)
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.5.1",
"version": "3.6.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.

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. Requires Deno 1.8 or better.",
"author": "Deno Land Inc.",
"license": "MIT",
"version": "3.5.1",
"version": "3.6.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.5.1",
"version": "3.6.0",
"publisher": "deno-land",
"main": "./out/index",
"repository": {
Expand Down

0 comments on commit 6eafebf

Please sign in to comment.