Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaeumer committed Dec 14, 2020
1 parent 22248ae commit 20681d7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
24 changes: 12 additions & 12 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vscode-languageclient",
"description": "VSCode Language client implementation",
"version": "7.0.0-next.16",
"version": "7.0.0",
"author": "Microsoft Corporation",
"license": "MIT",
"engines": {
Expand Down Expand Up @@ -29,7 +29,7 @@
"dependencies": {
"minimatch": "^3.0.4",
"semver": "^7.3.4",
"vscode-languageserver-protocol": "3.16.0-next.13"
"vscode-languageserver-protocol": "3.16.0"
},
"scripts": {
"install:dev": "cd src/node && npm install",
Expand Down
2 changes: 1 addition & 1 deletion client/src/node/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { StreamMessageReader, StreamMessageWriter, IPCMessageReader, IPCMessageW
export * from 'vscode-languageserver-protocol/node';
export * from '../common/api';

const REQUIRED_VSCODE_VERSION = '^1.51.0'; // do not change format, updated by `updateVSCode` script
const REQUIRED_VSCODE_VERSION = '^1.52.0'; // do not change format, updated by `updateVSCode` script

export interface ExecutableOptions {
cwd?: string;
Expand Down

0 comments on commit 20681d7

Please sign in to comment.