Skip to content

Commit

Permalink
Merge pull request #86 from krassowski/release/0.6.1
Browse files Browse the repository at this point in the history
Release 0.6.1, update RELEASE.md
  • Loading branch information
krassowski authored Oct 31, 2019
2 parents 1b30a06 + c990e2b commit 92d2833
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,16 @@ New in 0.6.0:

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

New in 0.6.1:

- removed unused dependencies
- added an indicator to the statusbar

### Coming soon:

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

```bash
jupyter labextension install @krassowski/[email protected].0
jupyter labextension install @krassowski/[email protected].1
```

## Development
Expand Down
4 changes: 3 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ The version for PyPI must be updated in two places:
- `py_src/jupyter_lsp/_version.py`
- `azure-pipelines.yml`

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

- `package.json`
- `azure-pipelines.yml`
- `packages/jupyterlab-lsp/package.json`
- `packages/metapackage/package.json`
- `README.md`
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ variables:
YARN_CACHE_FOLDER: $(Pipeline.Workspace)/.yarn

PY_JLSP_VERSION: 0.6.0b0
JS_JLLSP_VERSION: 0.6.0
JS_JLLSP_VERSION: 0.6.1

FIRST_PARTY_LABEXTENSIONS: >-
packages/jupyterlab-lsp/krassowski-jupyterlab-lsp-$(JS_JLLSP_VERSION).tgz
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": "0.6.0",
"version": "0.6.1",
"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": "0.6.0",
"version": "0.6.1",
"description": "JupyterLab LSP - Meta Package. All of the packages used by JupyterLab LSP",
"homepage": "https://github.com/krassowski/jupyterlab-lsp",
"bugs": {
Expand Down

0 comments on commit 92d2833

Please sign in to comment.