Skip to content

Commit

Permalink
Publish 8.0.2-next.4 (#982)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaeumer authored Jun 3, 2022
1 parent 38e5932 commit 2b4ae18
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 27 deletions.
18 changes: 9 additions & 9 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": "8.0.2-next.3",
"version": "8.0.2-next.4",
"author": "Microsoft Corporation",
"license": "MIT",
"engines": {
Expand Down Expand Up @@ -31,7 +31,7 @@
"dependencies": {
"minimatch": "^3.0.4",
"semver": "^7.3.5",
"vscode-languageserver-protocol": "3.17.2-next.3"
"vscode-languageserver-protocol": "3.17.2-next.5"
},
"scripts": {
"prepublishOnly": "git clean -xfd . && npm install && npm run clean && node ./bin/updateVSCode.js && npm run compile && npm test",
Expand Down
3 changes: 2 additions & 1 deletion protocol/metaModel.json
Original file line number Diff line number Diff line change
Expand Up @@ -13440,7 +13440,8 @@
"value": 4,
"documentation": "Interested in delete events"
}
]
],
"supportsCustomValues": true
},
{
"name": "DiagnosticSeverity",
Expand Down
4 changes: 2 additions & 2 deletions protocol/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 protocol/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vscode-languageserver-protocol",
"description": "VSCode Language Server Protocol implementation",
"version": "3.17.2-next.3",
"version": "3.17.2-next.5",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion protocol/src/common/protocol.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2097,7 +2097,7 @@ export namespace WatchKind {
*/
export const Delete: 4 = 4;
}
export type WatchKind = 1 | 2 | 4;
export type WatchKind = uinteger;

//---- Diagnostic notification ----

Expand Down
18 changes: 9 additions & 9 deletions server/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 server/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vscode-languageserver",
"description": "Language server implementation for node",
"version": "8.0.2-next.3",
"version": "8.0.2-next.4",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
Expand All @@ -21,7 +21,7 @@
"installServerIntoExtension": "./bin/installServerIntoExtension"
},
"dependencies": {
"vscode-languageserver-protocol": "3.17.2-next.3"
"vscode-languageserver-protocol": "3.17.2-next.5"
},
"scripts": {
"prepublishOnly": "git clean -xfd . && npm install && npm run clean && npm run compile && npm test",
Expand Down

0 comments on commit 2b4ae18

Please sign in to comment.