Skip to content

Release vscode client 1.9.0 #219

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion vscode-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Bash IDE

## 1.9.0

* Upgrade LSP to 1.13.0 (improved completion handler with suggestions based on variables and functions found in the workspace)

## 1.8.0

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

## 1.7.0

Expand Down
14 changes: 6 additions & 8 deletions vscode-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "A language server for Bash",
"author": "Mads Hartmann",
"license": "MIT",
"version": "1.8.0",
"version": "1.9.0",
"publisher": "mads-hartmann",
"repository": {
"type": "git",
Expand Down Expand Up @@ -52,16 +52,14 @@
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "rm -rf out && ../node_modules/.bin/tsc -p ./",
"compile:watch": "../node_modules/.bin/tsc -w -p ./",
"update-vscode": "vscode-install",
"postinstall": "vscode-install"
"compile:watch": "../node_modules/.bin/tsc -w -p ./"
},
"dependencies": {
"bash-language-server": "1.11.1",
"vscode-languageclient": "^5.2.1",
"vscode-languageserver": "^5.2.1"
"bash-language-server": "1.13.0",
"vscode-languageclient": "^6.1.3",
"vscode-languageserver": "^6.1.1"
},
"devDependencies": {
"vscode": "^1.1.34"
"@types/vscode": "^1.44.0"
}
}
Loading