Skip to content

Commit 1d10502

Browse files
committed
Release v2.1.0
1 parent 6f16bfa commit 1d10502

File tree

5 files changed

+23
-13
lines changed

5 files changed

+23
-13
lines changed

.github/workflows/job.test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ defaults:
1313

1414
env:
1515
# TODO extract these from files instead
16-
PY_JLSP_VERSION: 0.9.2
17-
JS_JLLSP_VERSION: 2.0.8
16+
PY_JLSP_VERSION: 0.9.3
17+
JS_JLLSP_VERSION: 2.1.0
1818
JS_JLG2D_VERSION: 1.0.0
1919

2020
PYTHONUNBUFFERED: 1

CHANGELOG.md

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,44 @@
11
## CHANGELOG
22

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

55
- features
66

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

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

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

1516
- features
1617

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

2023
- bug fixes
2124

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

34+
[#399]: https://github.com/krassowski/jupyterlab-lsp/issues/399
2835
[#403]: https://github.com/krassowski/jupyterlab-lsp/issues/403
36+
[#412]: https://github.com/krassowski/jupyterlab-lsp/issues/412
37+
[#413]: https://github.com/krassowski/jupyterlab-lsp/issues/413
38+
[#414]: https://github.com/krassowski/jupyterlab-lsp/issues/414
2939
[#421]: https://github.com/krassowski/jupyterlab-lsp/issues/421
3040

31-
### `@krassowski/code-jumpers 1.0.0` (???)
41+
### `@krassowski/code-jumpers 1.0.0` (2020-12-13)
3242

3343
- breaking changes
3444
- split away from `@krassowski/jupyterlab_go_to_definition`, renamed to `@krassowski/code-jumpers` ([#423]):

packages/jupyterlab-lsp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@krassowski/jupyterlab-lsp",
3-
"version": "2.0.8",
3+
"version": "2.1.0",
44
"description": "Language Server Protocol integration for JupyterLab",
55
"keywords": [
66
"jupyter",

packages/metapackage/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@krassowski/jupyterlab-lsp-metapackage",
3-
"version": "2.0.8",
3+
"version": "2.1.0",
44
"description": "JupyterLab LSP - Meta Package. All of the packages used by JupyterLab LSP",
55
"homepage": "https://github.com/krassowski/jupyterlab-lsp",
66
"bugs": {

py_src/jupyter_lsp/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
""" single source of truth for jupyter_lsp version
22
"""
3-
__version__ = "0.9.2"
3+
__version__ = "0.9.3"

0 commit comments

Comments
 (0)