Skip to content

Commit 52ba5dc

Browse files
authored
Merge pull request #388 from bash-lsp/ks/prepare-release
Release bash-language-server version 3
2 parents e55bac8 + d44f91e commit 52ba5dc

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Bash Language Server
22

3-
Bash language server implementation based on [Tree Sitter][tree-sitter] and its [grammar for Bash][tree-sitter-bash]
4-
with [explainshell][explainshell] integration.
3+
Bash language server implementation based on [Tree Sitter][tree-sitter] and its [grammar for Bash][tree-sitter-bash] and supports [explainshell][explainshell] and [shellcheck][shellcheck].
4+
5+
We strongly recommend that you install [shellcheck][shellcheck] to enable linting: https://github.com/koalaman/shellcheck#installing
56

67
## Features
78

@@ -135,6 +136,7 @@ Please see [docs/development-guide][dev-guide] for more information.
135136
[ide-bash]: https://atom.io/packages/ide-bash
136137
[sublime-text-lsp]: https://packagecontrol.io/packages/LSP-bash
137138
[explainshell]: https://explainshell.com/
139+
[shellcheck]: https://www.shellcheck.net/
138140
[languageclient-neovim]: https://github.com/autozimu/LanguageClient-neovim
139141
[nvim-lspconfig]: https://github.com/neovim/nvim-lspconfig
140142
[vim-lsp]: https://github.com/prabirshrestha/vim-lsp

server/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# Bash Language Server
22

3+
## 3.0.0
4+
5+
- Linting based on shellcheck (https://github.com/bash-lsp/bash-language-server/pull/342)
6+
- BREAKING: Drop node 11 support (ton of dependencies upgraded).
7+
38
## 2.1.0
49

5-
- Fix failing to get options if bash-completion<=2.9 #340 (https://github.com/bash-lsp/bash-language-server/pull/340)
10+
- Fix failing to get options if bash-completion<=2.9 (https://github.com/bash-lsp/bash-language-server/pull/340)
611
- onHover now supports for multiline code comments (https://github.com/bash-lsp/bash-language-server/pull/348)
712
- Dependency upgrades
813

server/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "A language server for Bash",
44
"author": "Mads Hartmann",
55
"license": "MIT",
6-
"version": "2.1.0",
6+
"version": "3.0.0",
77
"publisher": "mads-hartmann",
88
"main": "./out/server.js",
99
"typings": "./out/server.d.ts",
@@ -15,7 +15,7 @@
1515
"url": "https://github.com/bash-lsp/bash-language-server"
1616
},
1717
"engines": {
18-
"node": ">=11.0.0"
18+
"node": ">=12.0.0"
1919
},
2020
"dependencies": {
2121
"fuzzy-search": "^3.2.1",

0 commit comments

Comments
 (0)