Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to release v2.0.0 of frontend and 0.9.2 of backend #331

Merged
merged 5 commits into from
Sep 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
## CHANGELOG

### `jupyter-lsp 0.9.2` (unreleased)
### `jupyter-lsp 0.9.2` (2020-09-03)

- autodetects the `sql` language server for `.sql` files ([#328][])
- diagnostics are provided by `sqlint` which requires Node 11+
to work well (in contrast to currently required Node 10+).

[#328]: https://github.com/krassowski/jupyterlab-lsp/pull/328

### `@krassowski/jupyterlab-lsp 2.0.0` (unreleased)
### `@krassowski/jupyterlab-lsp 2.0.0` (2020-09-03)

- features

Expand Down
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ variables:
ATEST_RETRIES: 3
YARN_CACHE_FOLDER: $(Pipeline.Workspace)/.yarn

PY_JLSP_VERSION: 0.9.1
JS_JLLSP_VERSION: 1.1.2
PY_JLSP_VERSION: 0.9.2
JS_JLLSP_VERSION: 2.0.0
JS_JLG2D_VERSION: 1.0.0

FIRST_PARTY_LABEXTENSIONS: >-
Expand Down
25 changes: 17 additions & 8 deletions docs/Releasing.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@
"source": [
"### Updating Version Strings\n",
"\n",
"Use the `bump_versions` script to manage the version strings:\n",
"\n",
"```bash\n",
"python scripts/bump_versions.py\n",
"```\n",
"\n",
"Check the version strings across the various files:\n",
"\n",
"```bash\n",
Expand All @@ -25,12 +31,6 @@
"- TODO: create a `release.py` script\n",
" [#88](https://github.com/krassowski/jupyterlab-lsp/issues/88)\n",
"\n",
"Use the `bump_versions` script to manage the version strings:\n",
"\n",
"```bash\n",
"python scripts/bump_versions.py\n",
"```\n",
"\n",
"The PyPI version (jupyter-lsp) must be updated in the following places:\n",
"\n",
"- `py_src/jupyter_lsp/_version.py` (canonical)\n",
Expand Down Expand Up @@ -64,10 +64,19 @@
"\n",
"```bash\n",
"cd packages/lsp-ws-connection\n",
"npm publish\n",
"npm publish --access public\n",
"cd -\n",
"cd packages/completion-theme\n",
"npm publish --access public\n",
"cd -\n",
"cd packages/theme-material\n",
"npm publish --access public\n",
"cd -\n",
"cd packages/theme-vscode\n",
"npm publish --access public\n",
"cd -\n",
"cd packages/jupyterlab-lsp\n",
"npm publish\n",
"npm publish --access public\n",
"cd -\n",
"./scripts/publish_pypi.sh\n",
"```"
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": "1.1.2",
"version": "2.0.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": "1.1.2",
"version": "2.0.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.1"
__version__ = "0.9.2"