Skip to content

Commit 093bb15

Browse files
authored
Merge pull request #331 from krassowski/v2.0.0
Bump version to release v2.0.0 of frontend and 0.9.2 of backend
2 parents c1fb335 + 13ac863 commit 093bb15

File tree

6 files changed

+24
-15
lines changed

6 files changed

+24
-15
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
## CHANGELOG
22

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

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

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

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

1313
- features
1414

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ variables:
1515
ATEST_RETRIES: 3
1616
YARN_CACHE_FOLDER: $(Pipeline.Workspace)/.yarn
1717

18-
PY_JLSP_VERSION: 0.9.1
19-
JS_JLLSP_VERSION: 1.1.2
18+
PY_JLSP_VERSION: 0.9.2
19+
JS_JLLSP_VERSION: 2.0.0
2020
JS_JLG2D_VERSION: 1.0.0
2121

2222
FIRST_PARTY_LABEXTENSIONS: >-

docs/Releasing.ipynb

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@
1616
"source": [
1717
"### Updating Version Strings\n",
1818
"\n",
19+
"Use the `bump_versions` script to manage the version strings:\n",
20+
"\n",
21+
"```bash\n",
22+
"python scripts/bump_versions.py\n",
23+
"```\n",
24+
"\n",
1925
"Check the version strings across the various files:\n",
2026
"\n",
2127
"```bash\n",
@@ -25,12 +31,6 @@
2531
"- TODO: create a `release.py` script\n",
2632
" [#88](https://github.com/krassowski/jupyterlab-lsp/issues/88)\n",
2733
"\n",
28-
"Use the `bump_versions` script to manage the version strings:\n",
29-
"\n",
30-
"```bash\n",
31-
"python scripts/bump_versions.py\n",
32-
"```\n",
33-
"\n",
3434
"The PyPI version (jupyter-lsp) must be updated in the following places:\n",
3535
"\n",
3636
"- `py_src/jupyter_lsp/_version.py` (canonical)\n",
@@ -64,10 +64,19 @@
6464
"\n",
6565
"```bash\n",
6666
"cd packages/lsp-ws-connection\n",
67-
"npm publish\n",
67+
"npm publish --access public\n",
68+
"cd -\n",
69+
"cd packages/completion-theme\n",
70+
"npm publish --access public\n",
71+
"cd -\n",
72+
"cd packages/theme-material\n",
73+
"npm publish --access public\n",
74+
"cd -\n",
75+
"cd packages/theme-vscode\n",
76+
"npm publish --access public\n",
6877
"cd -\n",
6978
"cd packages/jupyterlab-lsp\n",
70-
"npm publish\n",
79+
"npm publish --access public\n",
7180
"cd -\n",
7281
"./scripts/publish_pypi.sh\n",
7382
"```"

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": "1.1.2",
3+
"version": "2.0.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": "1.1.2",
3+
"version": "2.0.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.1"
3+
__version__ = "0.9.2"

0 commit comments

Comments
 (0)