From c31a57f914f036b089a943bf4419b2c8189c208f Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Sat, 27 Feb 2021 17:49:53 +0100 Subject: [PATCH 1/3] Update release notes --- .github/workflows/release.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aebab65..3cede81 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,13 +34,10 @@ jobs: - Galaxy Language Server [changelog](https://github.com/davelopez/galaxy-language-server/blob/master/server/CHANGELOG.md) - Galaxy Tools Visual Studio Extension [changelog](https://github.com/davelopez/galaxy-language-server/blob/master/client/CHANGELOG.md#) - This version of the language server is available as a [PyPI package](https://pypi.org/project/galaxy-language-server/) and can be installed using: - ``` - python3 -m pip install galaxy-language-server==${{ steps.get_version.outputs.version-without-v }} - ``` + The standalone version of the language server is available as a [PyPI package](https://pypi.org/project/galaxy-language-server/). The Galaxy Tools Extension is available at [Open VSX Registry](https://open-vsx.org/extension/davelopez/galaxy-tools) and [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=davelopez.galaxy-tools). - You can also install the extension manually by downloading the VSIX package and using: + You can also install the extension manually by downloading the VSIX package included in this release and using: ``` code --install-extension galaxy-tools-${{ steps.get_version.outputs.version-without-v }}.vsix ``` From 9aee015248c158bbfa7a834eba013713be80bb9b Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Sat, 27 Feb 2021 18:31:49 +0100 Subject: [PATCH 2/3] Update extension changelog --- client/CHANGELOG.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/client/CHANGELOG.md b/client/CHANGELOG.md index d0432ca..4c4cbb5 100644 --- a/client/CHANGELOG.md +++ b/client/CHANGELOG.md @@ -1,12 +1,24 @@ # Galaxy Tools (VS Code Extension) Changelog +## [0.4.1] - 2021-02-27 + +### Added + +- After running the tests from the Test Explorer a link to the full HTML test report will appear in the output console ([#122](https://github.com/galaxyproject/galaxy-language-server/pull/122)). + +### Changed + +- Various improvements in the installation process. Lightweight extension bundle, remember selected Python binary on updates, and less repeated notifications ([#120](https://github.com/galaxyproject/galaxy-language-server/pull/120)). +- Detach client and server versions. Now both versions can evolve independently ([#119](https://github.com/galaxyproject/galaxy-language-server/pull/119)). +- Hide command and view contributions when the extension is not active. This will make the commands and the planemo explorer icon visible only if the extension is active and not all the time ([#117](https://github.com/galaxyproject/galaxy-language-server/pull/117)). + ## [0.4.0] - 2021-02-15 ### Added -- New settings to integrate [planemo](https://github.com/galaxyproject/planemo) and run `planemo test` inside [Test Explorer UI](https://marketplace.visualstudio.com/items?itemName=hbenl.vscode-test-explorer) for the currently opened tool documents. ([#110](https://github.com/galaxyproject/galaxy-language-server/pull/110)) +- New settings to integrate [planemo](https://github.com/galaxyproject/planemo) and run `planemo test` inside [Test Explorer UI](https://marketplace.visualstudio.com/items?itemName=hbenl.vscode-test-explorer) for the currently opened tool documents ([#110](https://github.com/galaxyproject/galaxy-language-server/pull/110)). -- Commands to reorder `` attributes (in a single tag `Ctrl+Alt+s Ctrl+Alt+p` or the whole document `Ctrl+Alt+s Ctrl+Alt+d`) according to the IUC Style Guidelines. ([#104](https://github.com/galaxyproject/galaxy-language-server/pull/104)) +- Commands to reorder `` attributes (in a single tag `Ctrl+Alt+s Ctrl+Alt+p` or the whole document `Ctrl+Alt+s Ctrl+Alt+d`) according to the IUC Style Guidelines ([#104](https://github.com/galaxyproject/galaxy-language-server/pull/104)). ### Fixed @@ -15,6 +27,7 @@ ### Changed - Update gx-tool snippet to latests IUC best practices ([#94](https://github.com/galaxyproject/galaxy-language-server/pull/94)). +- Updated Galaxy Language Server [v0.4.0](./server/CHANGELOG.md#040) ## [0.3.2] - 2021-01-24 From e05df01c2cda154d2320980c9ecce6b4e52d370f Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Sat, 27 Feb 2021 18:32:40 +0100 Subject: [PATCH 3/3] Update extension version to 0.4.1 --- client/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/package.json b/client/package.json index c4e89a7..35dec71 100644 --- a/client/package.json +++ b/client/package.json @@ -5,7 +5,7 @@ "author": "davelopez", "publisher": "davelopez", "license": "Apache-2.0", - "version": "0.4.0", + "version": "0.4.1", "preview": true, "repository": { "type": "git",