Skip to content

Commit

Permalink
Released version 3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaeumer committed Nov 7, 2017
1 parent 285f8d4 commit cf50675
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ language servers for [VSCode](https://code.visualstudio.com/).

## History

### 3.5.0 Server and Client

* allow the client to start the server in detached mode. If the server is running detached the client will not monitor the server process and kill it on shutdown.
* bug fixing.

### 3.4.0 Server and Client

* a new npm module `vscode-languageserver-protocol` has been added which contains the protocol definitions in TypeScript. This module is now shared between the client and the server.
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": "3.5.0-next.4",
"version": "3.5.0",
"author": "Microsoft Corporation",
"license": "MIT",
"engines": {
Expand All @@ -20,7 +20,7 @@
"vscode": "^1.1.5"
},
"dependencies": {
"vscode-languageserver-protocol": "^3.5.0-next.5"
"vscode-languageserver-protocol": "^3.5.0"
},
"scripts": {
"prepublish": "npm run update-vscode && npm run compile && npm test",
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": "3.5.0-next.2",
"version": "3.5.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.5.0-next.5",
"version": "3.5.0",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
Expand All @@ -14,8 +14,8 @@
"main": "./lib/main.js",
"typings": "./lib/main",
"dependencies": {
"vscode-jsonrpc": "^3.5.0-next.2",
"vscode-languageserver-types": "^3.5.0-next.2"
"vscode-jsonrpc": "^3.5.0",
"vscode-languageserver-types": "^3.5.0"
},
"scripts": {
"prepublish": "npm run compile",
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": "3.5.0-next.6",
"version": "3.5.0",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
Expand All @@ -18,7 +18,7 @@
"typings": "./lib/main",
"dependencies": {
"vscode-uri": "^1.0.1",
"vscode-languageserver-protocol": "^3.5.0-next.5"
"vscode-languageserver-protocol": "^3.5.0"
},
"scripts": {
"prepublish": "npm run compile",
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.5.0-next.2",
"version": "3.5.0",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
Expand Down

0 comments on commit cf50675

Please sign in to comment.