Skip to content

Commit

Permalink
chore: bump minimum version of Deno CLI (#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk authored Aug 24, 2021
1 parent edb1e12 commit b87acc5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@
This extension adds support for using [Deno](https://deno.land/) with Visual
Studio Code, powered by the Deno language server.

> ⚠️ **Important:** You need to have a version of Deno CLI installed (v1.10.3 or
> ⚠️ **Important:** You need to have a version of Deno CLI installed (v1.13.0 or
> later). The extension requires the executable and by default will use the
> environment path. You can explicitly set the path to the executable in Visual
> Studio Code Settings for `deno.path`.
>
> [Check here](https://deno.land/#installation) for instructions on how to
> install the Deno CLI.
Expand Down
2 changes: 1 addition & 1 deletion client/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ export const LANGUAGE_CLIENT_NAME = "Deno Language Server";
export const TS_LANGUAGE_FEATURES_EXTENSION =
"vscode.typescript-language-features";
/** The minimum version of Deno that this extension is designed to support. */
export const SERVER_SEMVER = ">=1.10.3";
export const SERVER_SEMVER = ">=1.13.0";

0 comments on commit b87acc5

Please sign in to comment.