Skip to content

Commit

Permalink
Patch v0.7.1
Browse files Browse the repository at this point in the history
- Fixes error when trying to discover tests in non-Galaxy tool documents.
  • Loading branch information
davelopez committed Jan 31, 2022
2 parents 6b0130a + 852c1c6 commit 2f9e34d
Show file tree
Hide file tree
Showing 6 changed files with 21 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.7.1] - 2022-01-31

### Fixed

- Error when trying to discover tests in non-Galaxy tool documents ([#189](https://github.com/galaxyproject/galaxy-language-server/pull/189)).

### Changed

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

## [0.7.0] - 2022-01-29

### Changed
Expand Down
4 changes: 2 additions & 2 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion 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.7.0",
"version": "0.7.1",
"preview": true,
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion client/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,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.7.0";
export const GALAXY_LS_VERSION = "0.7.1";
export const LANGUAGE_ID = "galaxytool";
export const TOOL_DOCUMENT_EXTENSION = "xml";

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

## [0.7.1] - 2022-01-31

### Fixed

- Check valid document extension before checking contents when validating documents ([#189](https://github.com/galaxyproject/galaxy-language-server/pull/189)).

## [0.7.0] - 2022-01-29

### Added
Expand Down
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.7.0"
VERSION = "0.7.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 2f9e34d

Please sign in to comment.