diff --git a/README.md b/README.md index e0174ad9..15d230d3 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/client/src/constants.ts b/client/src/constants.ts index b7b5a30e..f760d3ae 100644 --- a/client/src/constants.ts +++ b/client/src/constants.ts @@ -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";