Skip to content

Commit 8fe7d02

Browse files
committed
Release 0.6.1, update RELEASE.md
1 parent 1b30a06 commit 8fe7d02

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,15 @@ New in 0.6.0:
4242

4343
- automated LSP servers start and traitlets-based configuration
4444
- "rename" action in file editor
45-
- improved code navigation when there are multiple jump targets
4645
- and many other improvements, see the [release notes](https://github.com/krassowski/jupyterlab-lsp/releases/tag/v0.6.0).
4746

47+
New in 0.6.1:
48+
- removed unused dependencies
49+
- added an indicator to the statusbar
50+
4851
### Coming soon:
4952

53+
- improved code navigation when there are multiple jump targets
5054
- autocompleter with documentation and sorting based on LSP suggestions
5155
- system of settings, including options:
5256
- to enable aggressive autocompletion (like in hinterland)
@@ -120,7 +124,7 @@ jupyter labextension update @krassowski/jupyterlab-lsp
120124
Use install command (update does not seem to work) appending `@version` to the extension name, like this:
121125

122126
```bash
123-
jupyter labextension install @krassowski/[email protected].0
127+
jupyter labextension install @krassowski/[email protected].1
124128
```
125129

126130
## Development

RELEASE.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ The version for PyPI must be updated in two places:
99
- `py_src/jupyter_lsp/_version.py`
1010
- `azure-pipelines.yml`
1111

12-
The version for npm must be updated in three places:
12+
The version for npm must be updated in five places (TODO create a `release.sh` or `release.py` script):
1313

1414
- `package.json`
1515
- `azure-pipelines.yml`
16+
- `packages/jupyterlab-lsp/package.json`
17+
- `packages/metapackage/package.json`
1618
- `README.md`

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ variables:
1313
YARN_CACHE_FOLDER: $(Pipeline.Workspace)/.yarn
1414

1515
PY_JLSP_VERSION: 0.6.0b0
16-
JS_JLLSP_VERSION: 0.6.0
16+
JS_JLLSP_VERSION: 0.6.1
1717

1818
FIRST_PARTY_LABEXTENSIONS: >-
1919
packages/jupyterlab-lsp/krassowski-jupyterlab-lsp-$(JS_JLLSP_VERSION).tgz

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": "0.6.0",
3+
"version": "0.6.1",
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": "0.6.0",
3+
"version": "0.6.1",
44
"description": "JupyterLab LSP - Meta Package. All of the packages used by JupyterLab LSP",
55
"homepage": "https://github.com/krassowski/jupyterlab-lsp",
66
"bugs": {

0 commit comments

Comments
 (0)