Skip to content

Commit

Permalink
Release v0.10.0
Browse files Browse the repository at this point in the history
Prepare release v0.10.0
  • Loading branch information
davelopez committed Feb 25, 2023
2 parents 34cf7de + 3358965 commit b0b0e82
Show file tree
Hide file tree
Showing 9 changed files with 670 additions and 672 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.0] - 2023-02-25

### Changed

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

## [0.9.0] - 2022-10-20

### Changed
Expand Down
1,277 changes: 632 additions & 645 deletions client/package-lock.json

Large diffs are not rendered by default.

28 changes: 14 additions & 14 deletions 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.9.0",
"version": "0.10.0",
"preview": true,
"repository": {
"type": "git",
Expand Down Expand Up @@ -286,21 +286,21 @@
"test:e2e": "node ./out/tests//e2e/runTests.js"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.13",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.1",
"@types/tmp": "^0.2.3",
"@types/vscode": "^1.52.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"@vscode/test-electron": "^2.1.5",
"eslint": "^8.8.0",
"mocha": "^10.0.0",
"prettier": "2.5.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2"
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vscode/test-electron": "^2.2.3",
"eslint": "^8.34.0",
"mocha": "^10.2.0",
"prettier": "2.8.4",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"iconv-lite": "^0.6.3",
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.9.0";
export const GALAXY_LS_VERSION = "0.10.0";
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.0] - 2023-02-25

### Changed

- Update pygls to version 1.0.1. This enables Python 3.11 support and other features. ([#216](https://github.com/galaxyproject/galaxy-language-server/pull/216)).

## [0.9.0] - 2022-10-20

### Added
Expand Down
2 changes: 1 addition & 1 deletion server/galaxyls/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
)
from galaxyls.utils import deserialize_command_param

GLS_VERSION = "0.9.0"
GLS_VERSION = "0.10.0"
GLS_NAME = "galaxy-tools-language-server"


Expand Down
2 changes: 1 addition & 1 deletion server/galaxyls/services/tools/inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def _build_repeat_input_tree(self, repeat: XmlElement) -> Optional[RepeatInputNo
if name:
min = 1
min_attr = repeat.get_attribute(MIN)
if min_attr and min_attr.isdigit:
if min_attr and min_attr.isdigit():
min = int(min_attr)
repeat_node = RepeatInputNode(name, min, repeat)
self._build_input_tree(repeat, repeat_node)
Expand Down
1 change: 0 additions & 1 deletion server/galaxyls/tests/unit/test_completion.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ def get_context_from_line_position(fake_tree: XsdTree, line: str, position: Posi

class TestXmlCompletionServiceClass:
def test_init_sets_properties(self, fake_tree: XsdTree, fake_definitions_provider: DocumentDefinitionsProvider) -> None:

service = XmlCompletionService(fake_tree, fake_definitions_provider)

assert service.xsd_tree
Expand Down
18 changes: 9 additions & 9 deletions server/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
# But imports the runtime ones too
-r requirements.txt

black==22.6.0
flake8-bugbear==22.7.1
flake8==5.0.4
isort==5.10.1
black==23.1.0
flake8-bugbear==23.2.13
flake8==6.0.0
isort==5.12.0
lxml-stubs==0.4.0
mypy==0.971
pytest-cov==3.0.0
pytest-mock==3.8.2
pytest==7.1.2
types-setuptools==57.4.7
mypy==1.0.1
pytest-cov==4.0.0
pytest-mock==3.10.0
pytest==7.2.1
types-setuptools==67.4.0.1

0 comments on commit b0b0e82

Please sign in to comment.