Skip to content

Commit

Permalink
Merge pull request #1062 from krassowski/more-prep-for-5.1
Browse files Browse the repository at this point in the history
Minor version/debug statement cleanup in preparation for v5.1
  • Loading branch information
krassowski authored Feb 26, 2024
2 parents 7f20250 + 20ed509 commit 18d5c8c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/job.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ jobs:
python-version: ${{ matrix.python }}
architecture: 'x64'
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.nodejs }}
- uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion packages/code-jumpers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyter-lsp/code-jumpers",
"version": "2.0.0",
"version": "2.1.0",
"description": "Implementation underlying the jump to definition functionality in JupyterLab-LSP",
"keywords": [
"jupyter",
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.1",
"version": "4.1.0",
"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
Expand Up @@ -61,8 +61,8 @@
"watch:src": "tsc -w"
},
"dependencies": {
"@jupyter-lsp/code-jumpers": "~2.0.0",
"@jupyter-lsp/completion-theme": "~4.0.1",
"@jupyter-lsp/code-jumpers": "~2.1.0",
"@jupyter-lsp/completion-theme": "~4.1.0",
"@jupyter-lsp/theme-material": "~3.0.0",
"@jupyter-lsp/theme-vscode": "~3.0.0",
"@jupyterlab/lsp": "^4.1.0",
Expand Down
1 change: 0 additions & 1 deletion packages/jupyterlab-lsp/src/adapters/fileeditor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ export class FileEditorAdapter extends UpstreamFileEditorAdapter {
return;
}
emitted = true;
console.log('call');
emit.call(this._editorAdded, args);
};
}
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2120,7 +2120,7 @@ __metadata:
languageName: node
linkType: hard

"@jupyter-lsp/code-jumpers@workspace:*, @jupyter-lsp/code-jumpers@workspace:packages/code-jumpers, @jupyter-lsp/code-jumpers@~2.0.0":
"@jupyter-lsp/code-jumpers@workspace:*, @jupyter-lsp/code-jumpers@workspace:packages/code-jumpers, @jupyter-lsp/code-jumpers@~2.1.0":
version: 0.0.0-use.local
resolution: "@jupyter-lsp/code-jumpers@workspace:packages/code-jumpers"
dependencies:
Expand All @@ -2139,7 +2139,7 @@ __metadata:
languageName: unknown
linkType: soft

"@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":
"@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":
version: 0.0.0-use.local
resolution: "@jupyter-lsp/completion-theme@workspace:packages/completion-theme"
dependencies:
Expand Down Expand Up @@ -2196,8 +2196,8 @@ __metadata:
resolution: "@jupyter-lsp/jupyterlab-lsp@workspace:packages/jupyterlab-lsp"
dependencies:
"@codemirror/lint": ^6.4.0
"@jupyter-lsp/code-jumpers": ~2.0.0
"@jupyter-lsp/completion-theme": ~4.0.1
"@jupyter-lsp/code-jumpers": ~2.1.0
"@jupyter-lsp/completion-theme": ~4.1.0
"@jupyter-lsp/theme-material": ~3.0.0
"@jupyter-lsp/theme-vscode": ~3.0.0
"@jupyter-notebook/application": ^7.1.0
Expand Down

0 comments on commit 18d5c8c

Please sign in to comment.