Skip to content

Commit 13ac863

Browse files
committed
Update the release instructions
1 parent adec7ba commit 13ac863

File tree

1 file changed

+17
-8
lines changed

1 file changed

+17
-8
lines changed

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
"```"

0 commit comments

Comments
 (0)