From 36a92576ed8d3d757e24a7da5e203364a42639f0 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 19 Feb 2021 11:20:31 -0500 Subject: [PATCH] Release 3.0.0, canary is now main (#332) --- .github/workflows/ci.yml | 10 +--------- Releases.md | 9 +++++++++ package.json | 10 +++++----- 3 files changed, 15 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abf568fd..cc9fe92b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,14 +1,6 @@ name: ci -on: - push: - branches: - - main - tags: - - canary/* - pull_request: - branches: - - main +on: [push, pull_request] jobs: build: diff --git a/Releases.md b/Releases.md index f8b0c68a..29175d6b 100644 --- a/Releases.md +++ b/Releases.md @@ -3,6 +3,15 @@ Releases of the extension can be downloaded from [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=denoland.vscode-deno). +### [3.0.0](https://github.com/denoland/vscode_deno/compare/canary/0.0.10...3.0.0) / 2021.02.19 + +Canary has been released as the main extension. Use Deno 1.7.5 or later. + +- chore: README improvements (#331) +- feat: use preview instead of display for status (#330) +- feat: add a welcome screen for extension (#329) +- fix: typo in init command (#327) + ### [canary/0.0.10](https://github.com/denoland/vscode_deno/compare/canary/0.0.9...canary/0.0.10) / 2021.02.13 - fix: don't remove required files when packaging vsix diff --git a/package.json b/package.json index 8b3b6fed..a3703d2e 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { - "name": "vscode-deno-canary", - "displayName": "Deno (Canary)", - "description": "A beta language server client for Deno. Requires Deno 1.6 or better.", + "name": "vscode-deno", + "displayName": "Deno", + "description": "A language server client for Deno. Requires Deno 1.7 or better.", "author": "Deno Land Inc.", "license": "MIT", - "version": "0.0.10", + "version": "3.0.0", "icon": "deno.png", "galleryBanner": { "color": "#3B3738", @@ -186,4 +186,4 @@ "@types/node": "^14.14.25", "typescript": "^4.1.3" } -} \ No newline at end of file +}