From 1440d32f5c498aab28d37f3bd955fd77f0e8cf27 Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Fri, 13 Nov 2020 20:36:03 +0100 Subject: [PATCH 1/4] Fix link in release template --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5758524..13336f6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,7 +39,7 @@ jobs: python3 -m pip install galaxy-language-server==${{ steps.get_version.outputs.version-without-v }} ``` - 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/). + 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: ``` code --install-extension galaxy-tools-${{ steps.get_version.outputs.version-without-v }}.vsix From 10fbff94a75e55078e2b1215a6174b1f72e1feb8 Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Fri, 13 Nov 2020 20:56:06 +0100 Subject: [PATCH 2/4] Update changelogs --- client/CHANGELOG.md | 11 ++++++++--- server/CHANGELOG.md | 7 +++---- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/client/CHANGELOG.md b/client/CHANGELOG.md index ed45fb2..e91a1b2 100644 --- a/client/CHANGELOG.md +++ b/client/CHANGELOG.md @@ -1,10 +1,15 @@ # Galaxy Tools (VS Code Extension) Changelog -## Unreleased +## [0.2.0] - 2020-11-13 ### Added -- Settings to control completion features. +- Settings to control completion features ([#56](https://github.com/galaxyproject/galaxy-language-server/pull/56)). +- Auto indent on new line ([#52](https://github.com/galaxyproject/galaxy-language-server/pull/52)) + +### Changed + +- Updated Galaxy Language Server [v0.2.0](./server/CHANGELOG.md#020) ## [0.1.2] - 2020-10-25 @@ -15,7 +20,7 @@ ### Fixed -- Fix error preventing the language server to start or install in Unix systems (#48). +- Fix error preventing the language server to start or install in Unix systems ([#49](https://github.com/galaxyproject/galaxy-language-server/pull/49)). ## [0.1.1] - 2020-10-24 [YANKED] diff --git a/server/CHANGELOG.md b/server/CHANGELOG.md index bc56d3a..40b8834 100644 --- a/server/CHANGELOG.md +++ b/server/CHANGELOG.md @@ -1,15 +1,14 @@ # Galaxy Language Server Changelog -## Unreleased +## [0.2.0] - 2020-11-13 ### Added -- Client settings loading on initialization. -- Using settings to control completion features. +- Client settings to control completion features ([#56](https://github.com/galaxyproject/galaxy-language-server/pull/56)). ### Changed -- The XML parser has been replaced for a better implementation. +- The XML parser has been replaced with a better implementation ([#55](https://github.com/galaxyproject/galaxy-language-server/pull/55)). ## [0.1.2] - 2020-10-25 From 9eb7fbc2e4d347a26093207ab778ae49df78dfe7 Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Fri, 13 Nov 2020 21:23:09 +0100 Subject: [PATCH 3/4] Update extension's manifest --- client/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/package.json b/client/package.json index 8706e01..3a5d093 100644 --- a/client/package.json +++ b/client/package.json @@ -1,18 +1,18 @@ { "name": "galaxy-tools", "displayName": "Galaxy Tools", - "description": "Galaxy Tools for Visual Studio Code (unofficial) - provides XML completion, lints, snippets and other smart features to develop Galaxy (https://galaxyproject.org/) tool wrappers.", + "description": "Galaxy Tools for Visual Studio Code - provides XML completion, lints, snippets and other smart features to develop Galaxy (https://galaxyproject.org/) tool wrappers.", "author": "davelopez", "publisher": "davelopez", "license": "Apache-2.0", - "version": "0.1.2", + "version": "0.2.0", "preview": true, "repository": { "type": "git", - "url": "https://github.com/davelopez/galaxy-language-server" + "url": "https://github.com/galaxyproject/galaxy-language-server" }, "bugs": { - "url": "https://github.com/davelopez/galaxy-language-server/issues" + "url": "https://github.com/galaxyproject/galaxy-language-server/issues" }, "categories": [ "Programming Languages", From 6eb88ffa1ce93e8a484e64444af046f45bcb8935 Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Fri, 13 Nov 2020 21:29:43 +0100 Subject: [PATCH 4/4] Update galaxy-tools-util dependency --- server/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/requirements.txt b/server/requirements.txt index c461bf0..240d6df 100644 --- a/server/requirements.txt +++ b/server/requirements.txt @@ -1,4 +1,4 @@ pygls==0.9.1 lxml==4.6.1 anytree==2.8.0 -galaxy-tool-util==20.9.0 +galaxy-tool-util==20.9.1