Skip to content

Commit 18d5c8c

Browse files
authored
Merge pull request #1062 from krassowski/more-prep-for-5.1
Minor version/debug statement cleanup in preparation for v5.1
2 parents 7f20250 + 20ed509 commit 18d5c8c

File tree

6 files changed

+9
-10
lines changed

6 files changed

+9
-10
lines changed

.github/workflows/job.test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ jobs:
415415
python-version: ${{ matrix.python }}
416416
architecture: 'x64'
417417
- name: Setup Node
418-
uses: actions/setup-node@v3
418+
uses: actions/setup-node@v4
419419
with:
420420
node-version: ${{ matrix.nodejs }}
421421
- uses: actions/download-artifact@v4

packages/code-jumpers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyter-lsp/code-jumpers",
3-
"version": "2.0.0",
3+
"version": "2.1.0",
44
"description": "Implementation underlying the jump to definition functionality in JupyterLab-LSP",
55
"keywords": [
66
"jupyter",

packages/completion-theme/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyter-lsp/completion-theme",
3-
"version": "4.0.1",
3+
"version": "4.1.0",
44
"description": "Completion theme manager for JupyterLab-LSP",
55
"keywords": [
66
"jupyter",

packages/jupyterlab-lsp/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161
"watch:src": "tsc -w"
6262
},
6363
"dependencies": {
64-
"@jupyter-lsp/code-jumpers": "~2.0.0",
65-
"@jupyter-lsp/completion-theme": "~4.0.1",
64+
"@jupyter-lsp/code-jumpers": "~2.1.0",
65+
"@jupyter-lsp/completion-theme": "~4.1.0",
6666
"@jupyter-lsp/theme-material": "~3.0.0",
6767
"@jupyter-lsp/theme-vscode": "~3.0.0",
6868
"@jupyterlab/lsp": "^4.1.0",

packages/jupyterlab-lsp/src/adapters/fileeditor.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ export class FileEditorAdapter extends UpstreamFileEditorAdapter {
3838
return;
3939
}
4040
emitted = true;
41-
console.log('call');
4241
emit.call(this._editorAdded, args);
4342
};
4443
}

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2120,7 +2120,7 @@ __metadata:
21202120
languageName: node
21212121
linkType: hard
21222122

2123-
"@jupyter-lsp/code-jumpers@workspace:*, @jupyter-lsp/code-jumpers@workspace:packages/code-jumpers, @jupyter-lsp/code-jumpers@~2.0.0":
2123+
"@jupyter-lsp/code-jumpers@workspace:*, @jupyter-lsp/code-jumpers@workspace:packages/code-jumpers, @jupyter-lsp/code-jumpers@~2.1.0":
21242124
version: 0.0.0-use.local
21252125
resolution: "@jupyter-lsp/code-jumpers@workspace:packages/code-jumpers"
21262126
dependencies:
@@ -2139,7 +2139,7 @@ __metadata:
21392139
languageName: unknown
21402140
linkType: soft
21412141

2142-
"@jupyter-lsp/completion-theme@^4.0.0, @jupyter-lsp/completion-theme@workspace:*, @jupyter-lsp/completion-theme@workspace:packages/completion-theme, @jupyter-lsp/completion-theme@~4.0.1":
2142+
"@jupyter-lsp/completion-theme@^4.0.0, @jupyter-lsp/completion-theme@workspace:*, @jupyter-lsp/completion-theme@workspace:packages/completion-theme, @jupyter-lsp/completion-theme@~4.1.0":
21432143
version: 0.0.0-use.local
21442144
resolution: "@jupyter-lsp/completion-theme@workspace:packages/completion-theme"
21452145
dependencies:
@@ -2196,8 +2196,8 @@ __metadata:
21962196
resolution: "@jupyter-lsp/jupyterlab-lsp@workspace:packages/jupyterlab-lsp"
21972197
dependencies:
21982198
"@codemirror/lint": ^6.4.0
2199-
"@jupyter-lsp/code-jumpers": ~2.0.0
2200-
"@jupyter-lsp/completion-theme": ~4.0.1
2199+
"@jupyter-lsp/code-jumpers": ~2.1.0
2200+
"@jupyter-lsp/completion-theme": ~4.1.0
22012201
"@jupyter-lsp/theme-material": ~3.0.0
22022202
"@jupyter-lsp/theme-vscode": ~3.0.0
22032203
"@jupyter-notebook/application": ^7.1.0

0 commit comments

Comments
 (0)