Skip to content

Commit

Permalink
v0.5.1
Browse files Browse the repository at this point in the history
Prepare patch v0.5.1
  • Loading branch information
davelopez committed Jun 3, 2021
2 parents d06e8aa + c8b876b commit edbcc39
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 5 deletions.
10 changes: 10 additions & 0 deletions client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Galaxy Tools (VS Code Extension) Changelog

## [0.5.1] - 2021-06-03

### Changed

- Updated Galaxy Language Server [v0.5.1](./server/CHANGELOG.md#051)

- Updated development dependencies ([#142](https://github.com/galaxyproject/galaxy-language-server/pull/142)).

- Include new installation troubleshooting entry in the readme for `pip module not found` error ([#141](https://github.com/galaxyproject/galaxy-language-server/pull/141)).

## [0.5.0] - 2021-05-13

### Added
Expand Down
4 changes: 2 additions & 2 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "davelopez",
"publisher": "davelopez",
"license": "Apache-2.0",
"version": "0.5.0",
"version": "0.5.1",
"preview": true,
"repository": {
"type": "git",
Expand Down Expand Up @@ -291,4 +291,4 @@
"extensionDependencies": [
"hbenl.vscode-test-explorer"
]
}
}
2 changes: 1 addition & 1 deletion client/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export namespace Constants {
export const LS_VENV_NAME = "glsenv";
export const GALAXY_LS_PACKAGE = "galaxy-language-server";
export const GALAXY_LS = "galaxyls";
export const GALAXY_LS_VERSION = "0.5.0"
export const GALAXY_LS_VERSION = "0.5.1"
export const LANGUAGE_ID = "galaxytool"
export const TOOL_DOCUMENT_EXTENSION = "xml"

Expand Down
8 changes: 8 additions & 0 deletions server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Galaxy Language Server Changelog

## [0.5.1] - 2021-06-03

### Fixed

- Clear diagnostics when the document is not valid ([#143](https://github.com/galaxyproject/galaxy-language-server/pull/143)).

- Fix empty document validation ([#144](https://github.com/galaxyproject/galaxy-language-server/pull/144)).

## [0.5.0] - 2021-05-13

### Added
Expand Down
2 changes: 1 addition & 1 deletion server/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pygls==0.10.3
lxml==4.6.3
anytree==2.8.0
galaxy-tool-util==21.1.0
galaxy-tool-util==21.1.1
pydantic==1.8.2
2 changes: 1 addition & 1 deletion server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


PACKAGE_NAME = "galaxy-language-server"
VERSION = "0.5.0"
VERSION = "0.5.1"
AUTHOR = "David López"
AUTHOR_EMAIL = "[email protected]"
DESCRIPTION = "A language server for Galaxy (https://galaxyproject.org) tool wrappers"
Expand Down

0 comments on commit edbcc39

Please sign in to comment.