From d7346494fb7386792e1a439cce36ecb973d13278 Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Thu, 3 Jun 2021 17:48:27 +0200 Subject: [PATCH 1/5] Bump server dependencies --- server/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/requirements.txt b/server/requirements.txt index 91a998f..46c7629 100644 --- a/server/requirements.txt +++ b/server/requirements.txt @@ -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 From 9713a139001d03a048b3517a112bed0ae1d76ce0 Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Thu, 3 Jun 2021 17:54:13 +0200 Subject: [PATCH 2/5] Update server changelog --- server/CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/server/CHANGELOG.md b/server/CHANGELOG.md index 5e344bb..dd8791d 100644 --- a/server/CHANGELOG.md +++ b/server/CHANGELOG.md @@ -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 From 7cdfa7dfbf8d8c5808afc6399f4f435bad8f9092 Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Thu, 3 Jun 2021 17:55:19 +0200 Subject: [PATCH 3/5] Set server version to 0.5.1 --- server/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/setup.py b/server/setup.py index 1a53eeb..00a3eac 100644 --- a/server/setup.py +++ b/server/setup.py @@ -5,7 +5,7 @@ PACKAGE_NAME = "galaxy-language-server" -VERSION = "0.5.0" +VERSION = "0.5.1" AUTHOR = "David López" AUTHOR_EMAIL = "davelopez7391@gmail.com" DESCRIPTION = "A language server for Galaxy (https://galaxyproject.org) tool wrappers" From 7957a623c56e0c4ac7ddef6a05aba9a78cbbd4dc Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Thu, 3 Jun 2021 18:02:00 +0200 Subject: [PATCH 4/5] Update extension changelog --- client/CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/client/CHANGELOG.md b/client/CHANGELOG.md index 0fcdaa8..12b804a 100644 --- a/client/CHANGELOG.md +++ b/client/CHANGELOG.md @@ -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 From c8b876bcf90396d438b3fbf7a1b6fa55f0c15fcc Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Thu, 3 Jun 2021 18:04:23 +0200 Subject: [PATCH 5/5] Update extension version --- client/package.json | 4 ++-- client/src/constants.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/package.json b/client/package.json index 52e5621..d35f605 100644 --- a/client/package.json +++ b/client/package.json @@ -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", @@ -291,4 +291,4 @@ "extensionDependencies": [ "hbenl.vscode-test-explorer" ] -} +} \ No newline at end of file diff --git a/client/src/constants.ts b/client/src/constants.ts index a0016e9..1b3dee9 100644 --- a/client/src/constants.ts +++ b/client/src/constants.ts @@ -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"