Skip to content

Commit

Permalink
Merge pull request #424 from krassowski/v2.1.0
Browse files Browse the repository at this point in the history
Release v2.1.0
  • Loading branch information
krassowski authored Dec 13, 2020
2 parents 6f16bfa + 1d10502 commit c1f239f
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/job.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ defaults:

env:
# TODO extract these from files instead
PY_JLSP_VERSION: 0.9.2
JS_JLLSP_VERSION: 2.0.8
PY_JLSP_VERSION: 0.9.3
JS_JLLSP_VERSION: 2.1.0
JS_JLG2D_VERSION: 1.0.0

PYTHONUNBUFFERED: 1
Expand Down
26 changes: 18 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,44 @@
## CHANGELOG

### `jupyter-lsp 0.9.3` (???)
### `jupyter-lsp 0.9.3` (2020-12-13)

- features

- the virtual documents' folder can be configured with `JP_LSP_VIRTUAL_DIR` or
`LanguageServerManager.virtual_documents_dir`; its default value is kept
unchanged: _contents.root_dir_ / `.virtual_documents` ([#416])
`LanguageServerManager.virtual_documents_dir`, with a potential benefit for
JupyterHub installations (the default value remains _contents.root_dir_ / `.virtual_documents`)
([#416], thanks @fcollonval)

[#416]: https://github.com/krassowski/jupyterlab-lsp/issues/416

### `@krassowski/jupyterlab-lsp 2.1.0` (???)
### `@krassowski/jupyterlab-lsp 2.1.0` (2020-12-13)

- features

- added "click to jump" functionality (by default using <kbd>Ctrl</kbd> modifier) ([#423])
- added "jump back" command, by default activated with <kbd>Ctrl</kbd> + <kbd>o</kbd> ([#423])
- added "click to jump" functionality (by default using <kbd>Alt</kbd> modifier) ([#423])
- added "jump back" command, by default activated with <kbd>Alt</kbd> + <kbd>o</kbd> ([#423])
- `.virtual_documents` location can now be customized ([#416])
- tokens are now exported making them available for import from other extensions ([#414], thanks @martinRenou)

- bug fixes

- context menu commands are now correctly registered where previously specific conditions were leading to race conditions ([#399], thanks @mnowacki-b)
- handles characters that need escaping (spaces, non-ASCII characters) more
robustly in files and folder names ([#403])
robustly in files and folder names ([#403], thanks @bollwyvl and @avaissi)
- moving cells now triggers the document update immediately leading to immediate diagnostics update ([#421])
- changing cell type to `raw` or `markdown` and then back to `code` properly unbinds/binds event handlers and updates document ([#421])
- pasted cells are added to the LSP document immediately, without the need for the user to enter them ([#421])
- improved error message when language server cannot be found ([#413], thanks @martinRenou)
- developer documentation got improved ([#412], thanks @karlaspuldaro)

[#399]: https://github.com/krassowski/jupyterlab-lsp/issues/399
[#403]: https://github.com/krassowski/jupyterlab-lsp/issues/403
[#412]: https://github.com/krassowski/jupyterlab-lsp/issues/412
[#413]: https://github.com/krassowski/jupyterlab-lsp/issues/413
[#414]: https://github.com/krassowski/jupyterlab-lsp/issues/414
[#421]: https://github.com/krassowski/jupyterlab-lsp/issues/421

### `@krassowski/code-jumpers 1.0.0` (???)
### `@krassowski/code-jumpers 1.0.0` (2020-12-13)

- breaking changes
- split away from `@krassowski/jupyterlab_go_to_definition`, renamed to `@krassowski/code-jumpers` ([#423]):
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": "2.0.8",
"version": "2.1.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": "2.0.8",
"version": "2.1.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 py_src/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__ = "0.9.2"
__version__ = "0.9.3"

0 comments on commit c1f239f

Please sign in to comment.