Skip to content

Commit

Permalink
Patch v0.10.2
Browse files Browse the repository at this point in the history
Prepare patch v0.10.2
  • Loading branch information
davelopez committed Mar 12, 2023
2 parents 500fc98 + 428818c commit fddef79
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 4 deletions.
6 changes: 6 additions & 0 deletions client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Galaxy Tools (VS Code Extension) Changelog

## [0.10.2] - 2023-03-12

### Changed

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

## [0.10.1] - 2023-03-04

### Changed
Expand Down
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.10.1",
"version": "0.10.2",
"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.10.1";
export const GALAXY_LS_VERSION = "0.10.2";
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.10.2] - 2023-03-12

### Fixed

- Fix parameters and models conversion between client and server ([#224](https://github.com/galaxyproject/galaxy-language-server/pull/224)).

## [0.10.1] - 2023-03-04

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion server/galaxyls/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
TestSuiteInfoResult,
)
from galaxyls.utils import convert_to
from galaxyls.version import GLS_VERSION

GLS_VERSION = "0.10.1"
GLS_NAME = "galaxy-tools-language-server"


Expand Down
1 change: 1 addition & 0 deletions server/galaxyls/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GLS_VERSION = "0.10.2"
2 changes: 1 addition & 1 deletion server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
setup,
)

from galaxyls.server import GLS_VERSION
from galaxyls.version import GLS_VERSION

PACKAGE_NAME = "galaxy-language-server"
VERSION = GLS_VERSION
Expand Down

0 comments on commit fddef79

Please sign in to comment.