Skip to content
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
19 changes: 19 additions & 0 deletions server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,27 @@
# Bash Language Server

## 1.3.0

- Improved completions by adding support for
- Suggestions based on the programs on your PATH [#17][17]
- Suggestions based on the bash builtins [#33][33]

- Implemented the `onHover` message that now shows documentation for programs
and builtins when you hover your cursor over words in the document. [#17][17]
[#33][33]

- Improved outline hierarchy [#31][31]

- Upgraded tree-sitter bash and other libraries. [#28][28]

## 1.1.2

Update `tree-sitter` to `0.10.0` and `tree-sitter-bash` to `0.6.0`. This
improves the Bash parser. There are still known parsing issues. For more
information following the progress on this issue over at
[tree-sitter/tree-sitter-bash#9](https://github.com/tree-sitter/tree-sitter-bash/issues/9)

[17]: https://github.com/mads-hartmann/bash-language-server/pull/17
[28]: https://github.com/mads-hartmann/bash-language-server/pull/28
[31]: https://github.com/mads-hartmann/bash-language-server/pull/31
[33]: https://github.com/mads-hartmann/bash-language-server/pull/33
2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "A language server for Bash",
"author": "Mads Hartmann",
"license": "MIT",
"version": "1.1.2",
"version": "1.3.0",
"publisher": "mads-hartmann",
"main": "out/server.js",
"bin": {
Expand Down
5 changes: 5 additions & 0 deletions vscode-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Bash IDE

## 1.3.0

The client will now prompt to upgrade the Bash Language Server if you're running
an old version.

## 1.2.1

- Attempt to support windows by appending `cmd` to the command to start the
Expand Down
2 changes: 1 addition & 1 deletion 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.2.1",
"version": "1.3.0",
"publisher": "mads-hartmann",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion vscode-client/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {

import { getServerInfo } from './util'

const MINIMUM_SERVER_VERSION = '1.1.2'
const MINIMUM_SERVER_VERSION = '1.3.0'

export async function activate(context: ExtensionContext) {
try {
Expand Down