Skip to content

Commit

Permalink
Merge pull request #637 from krassowski/v3.8.0
Browse files Browse the repository at this point in the history
Prepare jupyterlab-lsp 3.8.0 and jupyter-lsp 1.4.0 release
  • Loading branch information
krassowski authored Jul 4, 2021
2 parents 8ddb2a5 + de2fb64 commit d8c1505
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 6 deletions.
24 changes: 22 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
## Changelog

### `@krassowski/jupyterlab-lsp 3.7.1` (unreleased)
### `@krassowski/jupyterlab-lsp 3.8.0` (2021-07-04)

- improvements:

- add a note on manually enabling backend extension ([#621], thanks @icankeep)
- in-app troubleshooting/installation help is now offered for servers which are needed but could not be detected (if auto-detection specification for those is present) ([#634])
- in-app troubleshooting/installation help is now offered for servers which are needed but could not be detected
(if auto-detection specification for those is present) ([#634])

- bug fixes:
- fix rename shortcut registration in file editor ([#614])
Expand All @@ -18,6 +19,25 @@
[#630]: https://github.com/krassowski/jupyterlab-lsp/pull/630
[#634]: https://github.com/krassowski/jupyterlab-lsp/pull/634

### `jupyter-lsp 1.4.0` (2021-07-04)

- features:

- `troubleshoot` property was added to the language server spec, allowing to describe auto-detection troubleshooting
([#634])
- new endpoint `specs` will list all language server specifications known to `jupyter-lsp` allowing frontends
to suggest installation of specific language servers ([#634])

- changes:
- `ShellSpec.is_installed()` signature changed; it now accepts the `LanguageServerManagerAPI` rather than the resolved
command location (of `str` type); the specs using only `is_installed_args` are not affected; as this method was only
used by internally by the `__call__` implementation (which was adjusted accordingly) this change should not break
existing specs unless any of these methods were overridden in sub-classes.
- `SpecBase` was moved to `types.py`; it can still be imported from `utils`, but doing so is discouraged
- `ShellSpec.solve()` was added to facilitate discovery of command location

[#634]: https://github.com/krassowski/jupyterlab-lsp/pull/634

### `jupyter-lsp 1.3.0` (2021-06-02)

- features:
Expand Down
2 changes: 1 addition & 1 deletion packages/jupyterlab-lsp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@krassowski/jupyterlab-lsp",
"version": "3.7.0",
"version": "3.8.0",
"description": "Language Server Protocol integration for JupyterLab",
"keywords": [
"jupyter",
Expand Down
2 changes: 1 addition & 1 deletion packages/metapackage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@krassowski/jupyterlab-lsp-metapackage",
"version": "3.7.0",
"version": "3.8.0",
"description": "JupyterLab LSP - Meta Package. All of the packages used by JupyterLab LSP",
"homepage": "https://github.com/krassowski/jupyterlab-lsp",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion python_packages/jupyter_lsp/jupyter_lsp/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
""" single source of truth for jupyter_lsp version
"""
__version__ = "1.3.0"
__version__ = "1.4.0"
2 changes: 1 addition & 1 deletion python_packages/jupyterlab_lsp/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ zip_safe = False
python_requires = >=3.6

install_requires =
jupyter_lsp >=1.1.0
jupyter_lsp >=1.4.0
jupyterlab >=3.0.0,<4.0.0a0

0 comments on commit d8c1505

Please sign in to comment.