Skip to content

Commit 57b8eab

Browse files
authored
Merge pull request #219 from bash-lsp/vscode-client-1.9
Release vscode client 1.9.0
2 parents 9185211 + 0c27fe3 commit 57b8eab

File tree

3 files changed

+58
-235
lines changed

3 files changed

+58
-235
lines changed

vscode-client/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Bash IDE
22

3+
## 1.9.0
4+
5+
* Upgrade LSP to 1.13.0 (improved completion handler with suggestions based on variables and functions found in the workspace)
6+
37
## 1.8.0
48

5-
* Upgrade LSP to 1.11.1 (support for workspace symbols). This can for example be used by doing `Command + P` and then write `# someSearchQuery`.
9+
* Upgrade LSP to 1.11.1 (support for workspace symbols). This can for example be used by doing `Command + P` and then write `# someSearchQuery`
610

711
## 1.7.0
812

vscode-client/package.json

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "A language server for Bash",
55
"author": "Mads Hartmann",
66
"license": "MIT",
7-
"version": "1.8.0",
7+
"version": "1.9.0",
88
"publisher": "mads-hartmann",
99
"repository": {
1010
"type": "git",
@@ -52,16 +52,14 @@
5252
"scripts": {
5353
"vscode:prepublish": "yarn run compile",
5454
"compile": "rm -rf out && ../node_modules/.bin/tsc -p ./",
55-
"compile:watch": "../node_modules/.bin/tsc -w -p ./",
56-
"update-vscode": "vscode-install",
57-
"postinstall": "vscode-install"
55+
"compile:watch": "../node_modules/.bin/tsc -w -p ./"
5856
},
5957
"dependencies": {
60-
"bash-language-server": "1.11.1",
61-
"vscode-languageclient": "^5.2.1",
62-
"vscode-languageserver": "^5.2.1"
58+
"bash-language-server": "1.13.0",
59+
"vscode-languageclient": "^6.1.3",
60+
"vscode-languageserver": "^6.1.1"
6361
},
6462
"devDependencies": {
65-
"vscode": "^1.1.34"
63+
"@types/vscode": "^1.44.0"
6664
}
6765
}

0 commit comments

Comments
 (0)