Skip to content

Commit

Permalink
Release v0.9.0
Browse files Browse the repository at this point in the history
Release v0.9.0
  • Loading branch information
davelopez authored Oct 20, 2022
2 parents 507f675 + 8f4c8dd commit e22cd2f
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 9 deletions.
14 changes: 10 additions & 4 deletions client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,30 @@
# Galaxy Tools (VS Code Extension) Changelog

## [0.9.0] - 2022-10-20

### Changed

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

## [0.8.0] - 2022-10-02

### Changed

- Code quality: add end to end tests ([#206](https://github.com/galaxyproject/galaxy-language-server/pull/206)).
- Code quality: add end to end tests ([#206](https://github.com/galaxyproject/galaxy-language-server/pull/206)).

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

## [0.7.3] - 2022-09-06

### Fixed

- Bug in Python version parsing ([#200](https://github.com/galaxyproject/galaxy-language-server/pull/200)).
- Bug in Python version parsing ([#200](https://github.com/galaxyproject/galaxy-language-server/pull/200)).

## [0.7.2] - 2022-08-14

### Fixed

- Remove local virtual environment when install fails ([#196](https://github.com/galaxyproject/galaxy-language-server/pull/196)).
- Remove local virtual environment when install fails ([#196](https://github.com/galaxyproject/galaxy-language-server/pull/196)).

## [0.7.1] - 2022-01-31

Expand Down
6 changes: 6 additions & 0 deletions client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ Some possible errors:

You can customize some of the features with various settings either placing them in the `.vscode/settings.json` file in your workspace or editing them through the Settings Editor UI.

## Server settings

| Property | Description |
| ---------------------------------- | --------------------------------------------------------------------------------------------------------------------- |
| `galaxyTools.server.silentInstall` | Whether to skip user confirmation to install the language server. Useful when installing the extension in containers. |

## Completion settings

| Property | Description |
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.8.0",
"version": "0.9.0",
"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.8.0";
export const GALAXY_LS_VERSION = "0.9.0";
export const LANGUAGE_ID = "galaxytool";
export const TOOL_DOCUMENT_EXTENSION = "xml";

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

## [0.9.0] - 2022-10-20

### Added

- New setting to silently install the language server ([#210](https://github.com/galaxyproject/galaxy-language-server/pull/210)).

### Changed

- Code quality: fix e2e tests for linting ([#211](https://github.com/galaxyproject/galaxy-language-server/pull/211)).

## [0.8.0] - 2022-10-02

### Added
Expand Down
2 changes: 1 addition & 1 deletion server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
)

PACKAGE_NAME = "galaxy-language-server"
VERSION = "0.8.0"
VERSION = "0.9.0"
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 e22cd2f

Please sign in to comment.