Skip to content

Commit

Permalink
Update changelog and bump versions (#1028)
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski authored Nov 26, 2023
1 parent 7c36fb2 commit 73ee344
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 7 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
## Changelog

### `@jupyter-lsp/jupyterlab-lsp 5.0.1`

- bug fixes:
- fix false “undefined name” in `%%time` and `%%capture` magics #1007 (thanks @i-aki-y!)
- fix completion items for paths and other long items being cut off #1025
- workaround issue with markdown lost on edit #1016
- fix latex/Greek letters insertion and other completions which do not match prefix (do not pre-filter completions from kernel) #1022
- fix completions in Console #1023
- fix customising `priority` after pre-setting it with `overrides.json` #1027
- fix jump to definitions in a file inside root in Pyright on Windows #1024
- fix typos in setting title and help message #999 and #1010
- maintenance:
- fix bootstrap script #1021
- bump axios from 1.2.1 to 1.6.2 #1019
- bump @babel/traverse from 7.22.5 to 7.23.4 #1020

### `jupyter-lsp 2.2.1`

- bug fixes:
- use `APIHandler` over `JupyterHandler` to get CORS OPTIONS #952 (thanks @zhanba!)
- use `shutil.which` to discover `npm` executable on Windows (thanks @jameshurst!)
- maintenance:
- resolve traitlets type warnings, lint, remove six #1015
- use `sys.executable` in stdio tests #998

### `@jupyter-lsp/jupyterlab-lsp 5.0.0`

- enhancements:
Expand Down
2 changes: 1 addition & 1 deletion packages/completion-theme/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyter-lsp/completion-theme",
"version": "4.0.0",
"version": "4.0.1",
"description": "Completion theme manager for JupyterLab-LSP",
"keywords": [
"jupyter",
Expand Down
4 changes: 2 additions & 2 deletions packages/jupyterlab-lsp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyter-lsp/jupyterlab-lsp",
"version": "5.0.0",
"version": "5.0.1",
"description": "Language Server Protocol integration for JupyterLab",
"keywords": [
"jupyter",
Expand Down Expand Up @@ -61,7 +61,7 @@
},
"dependencies": {
"@jupyter-lsp/code-jumpers": "~2.0.0",
"@jupyter-lsp/completion-theme": "~4.0.0",
"@jupyter-lsp/completion-theme": "~4.0.1",
"@jupyter-lsp/theme-material": "~3.0.0",
"@jupyter-lsp/theme-vscode": "~3.0.0",
"@jupyterlab/lsp": "^4.0.6",
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": "@jupyter-lsp/jupyterlab-lsp-metapackage",
"version": "5.0.0",
"version": "5.0.1",
"description": "JupyterLab LSP - Meta Package. All of the packages used by JupyterLab LSP",
"homepage": "https://github.com/jupyter-lsp/jupyterlab-lsp",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion python_packages/jupyter_lsp/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__ = "2.2.0"
__version__ = "2.2.1"
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2223,7 +2223,7 @@ __metadata:
languageName: unknown
linkType: soft

"@jupyter-lsp/completion-theme@^4.0.0-rc.0, @jupyter-lsp/completion-theme@workspace:*, @jupyter-lsp/completion-theme@workspace:packages/completion-theme, @jupyter-lsp/completion-theme@~4.0.0":
"@jupyter-lsp/completion-theme@^4.0.0-rc.0, @jupyter-lsp/completion-theme@workspace:*, @jupyter-lsp/completion-theme@workspace:packages/completion-theme, @jupyter-lsp/completion-theme@~4.0.1":
version: 0.0.0-use.local
resolution: "@jupyter-lsp/completion-theme@workspace:packages/completion-theme"
dependencies:
Expand Down Expand Up @@ -2281,7 +2281,7 @@ __metadata:
dependencies:
"@codemirror/lint": ^6.4.0
"@jupyter-lsp/code-jumpers": ~2.0.0
"@jupyter-lsp/completion-theme": ~4.0.0
"@jupyter-lsp/completion-theme": ~4.0.1
"@jupyter-lsp/theme-material": ~3.0.0
"@jupyter-lsp/theme-vscode": ~3.0.0
"@jupyter-notebook/application": ^7.0.3
Expand Down

0 comments on commit 73ee344

Please sign in to comment.