|
16 | 16 | "source": [ |
17 | 17 | "### Updating Version Strings\n", |
18 | 18 | "\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", |
19 | 25 | "Check the version strings across the various files:\n", |
20 | 26 | "\n", |
21 | 27 | "```bash\n", |
|
25 | 31 | "- TODO: create a `release.py` script\n", |
26 | 32 | " [#88](https://github.com/krassowski/jupyterlab-lsp/issues/88)\n", |
27 | 33 | "\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", |
34 | 34 | "The PyPI version (jupyter-lsp) must be updated in the following places:\n", |
35 | 35 | "\n", |
36 | 36 | "- `py_src/jupyter_lsp/_version.py` (canonical)\n", |
|
64 | 64 | "\n", |
65 | 65 | "```bash\n", |
66 | 66 | "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", |
68 | 77 | "cd -\n", |
69 | 78 | "cd packages/jupyterlab-lsp\n", |
70 | | - "npm publish\n", |
| 79 | + "npm publish --access public\n", |
71 | 80 | "cd -\n", |
72 | 81 | "./scripts/publish_pypi.sh\n", |
73 | 82 | "```" |
|
0 commit comments