Skip to content

Commit 92d2833

Browse files
authored
Merge pull request #86 from krassowski/release/0.6.1
Release 0.6.1, update RELEASE.md
2 parents 1b30a06 + c990e2b commit 92d2833

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,16 @@ 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+
49+
- removed unused dependencies
50+
- added an indicator to the statusbar
51+
4852
### Coming soon:
4953

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

122127
```bash
123-
jupyter labextension install @krassowski/[email protected].0
128+
jupyter labextension install @krassowski/[email protected].1
124129
```
125130

126131
## 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)