Skip to content

Commit

Permalink
Prepare new release
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaeumer committed Sep 18, 2023
1 parent dfdb85d commit a705ba5
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 11 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ After cloning the repository, run `npm install` to install dependencies and `npm

## 3.17.0 Protocol, 8.2.0 JSON-RPC 9.0.0 Client and 9.0.0 Server

- added proposed refresh method for folding ranges. This changed the shape of the folding range feature since we need to expose the event emitter. The change is breaking. To get to the provider you now need to do
- added proposed inline completion request.
- added proposed formatting ranges request.
- added proposed refresh request for folding ranges. This changed the shape of the folding range feature since we need to expose the event emitter. The change is breaking. To get to the provider you now need to do
```ts
client.getFeature(lsclient.FoldingRangeRequest.method).getProvider(document)?.provider;
```
Expand Down
2 changes: 1 addition & 1 deletion client-node-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
"dependencies": {
"minimatch": "^3.0.4",
"vscode-languageserver": "8.2.0-next.3",
"vscode-languageserver": "9.0.0",
"vscode-uri": "3.0.3"
},
"devDependencies": {
Expand Down
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.2.0-next.3",
"version": "9.0.0",
"author": "Microsoft Corporation",
"license": "MIT",
"engines": {
Expand Down Expand Up @@ -30,7 +30,7 @@
"dependencies": {
"minimatch": "^5.1.0",
"semver": "^7.3.7",
"vscode-languageserver-protocol": "3.17.4-next.3"
"vscode-languageserver-protocol": "3.17.4"
},
"scripts": {
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",
Expand Down
2 changes: 1 addition & 1 deletion jsonrpc/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vscode-jsonrpc",
"description": "A json rpc implementation over streams",
"version": "8.2.0-next.2",
"version": "8.2.0",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
Expand Down
6 changes: 3 additions & 3 deletions 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.4-next.3",
"version": "3.17.4",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
Expand All @@ -18,8 +18,8 @@
},
"typings": "./lib/common/api.d.ts",
"dependencies": {
"vscode-jsonrpc": "8.2.0-next.2",
"vscode-languageserver-types": "3.17.4-next.2"
"vscode-jsonrpc": "8.2.0",
"vscode-languageserver-types": "3.17.4"
},
"scripts": {
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",
Expand Down
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.2.0-next.3",
"version": "9.0.0",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
Expand All @@ -24,7 +24,7 @@
"vscode-languageserver-textdocument": "1.0.10"
},
"dependencies": {
"vscode-languageserver-protocol": "3.17.4-next.3"
"vscode-languageserver-protocol": "3.17.4"
},
"scripts": {
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",
Expand Down
2 changes: 1 addition & 1 deletion types/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vscode-languageserver-types",
"description": "Types used by the Language server for node",
"version": "3.17.4-next.2",
"version": "3.17.4",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
Expand Down

0 comments on commit a705ba5

Please sign in to comment.