Skip to content

Commit 955d35c

Browse files
authored
Merge pull request #39 from mads-hartmann/prepare-1.3.0-release
Write CHANGELOG and bump versions
2 parents e5d2016 + 6890e85 commit 955d35c

File tree

5 files changed

+27
-3
lines changed

5 files changed

+27
-3
lines changed

server/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,27 @@
11
# Bash Language Server
22

3+
## 1.3.0
4+
5+
- Improved completions by adding support for
6+
- Suggestions based on the programs on your PATH [#17][17]
7+
- Suggestions based on the bash builtins [#33][33]
8+
9+
- Implemented the `onHover` message that now shows documentation for programs
10+
and builtins when you hover your cursor over words in the document. [#17][17]
11+
[#33][33]
12+
13+
- Improved outline hierarchy [#31][31]
14+
15+
- Upgraded tree-sitter bash and other libraries. [#28][28]
16+
317
## 1.1.2
418

519
Update `tree-sitter` to `0.10.0` and `tree-sitter-bash` to `0.6.0`. This
620
improves the Bash parser. There are still known parsing issues. For more
721
information following the progress on this issue over at
822
[tree-sitter/tree-sitter-bash#9](https://github.com/tree-sitter/tree-sitter-bash/issues/9)
23+
24+
[17]: https://github.com/mads-hartmann/bash-language-server/pull/17
25+
[28]: https://github.com/mads-hartmann/bash-language-server/pull/28
26+
[31]: https://github.com/mads-hartmann/bash-language-server/pull/31
27+
[33]: https://github.com/mads-hartmann/bash-language-server/pull/33

server/package.json

Lines changed: 1 addition & 1 deletion
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": "1.1.2",
6+
"version": "1.3.0",
77
"publisher": "mads-hartmann",
88
"main": "out/server.js",
99
"bin": {

vscode-client/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Bash IDE
22

3+
## 1.3.0
4+
5+
The client will now prompt to upgrade the Bash Language Server if you're running
6+
an old version.
7+
38
## 1.2.1
49

510
- Attempt to support windows by appending `cmd` to the command to start the

vscode-client/package.json

Lines changed: 1 addition & 1 deletion
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.2.1",
7+
"version": "1.3.0",
88
"publisher": "mads-hartmann",
99
"repository": {
1010
"type": "git",

vscode-client/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010

1111
import { getServerInfo } from './util'
1212

13-
const MINIMUM_SERVER_VERSION = '1.1.2'
13+
const MINIMUM_SERVER_VERSION = '1.3.0'
1414

1515
export async function activate(context: ExtensionContext) {
1616
try {

0 commit comments

Comments
 (0)