Skip to content

Commit c89e8fc

Browse files
committed
Add missing test notebook and changelog
1 parent 13366c1 commit c89e8fc

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
## CHANGELOG
22

3+
### `@krassowski/jupyterlab-lsp 3.3.0` (unreleased)
4+
5+
- features:
6+
7+
- added a timeout for kernel completion, with the default of 600ms ([#496])
8+
- added an option to skip waiting for kernel completions if busy, off by default ([#496])
9+
10+
- bug fixes:
11+
12+
- delayed completion suggestions will no longer show up if cursor moved to another line ([#496])
13+
- changes in notebooks after kernel restart or file rename will now be recorded by the language server again ([#496])
14+
15+
[#496]: https://github.com/krassowski/jupyterlab-lsp/pull/496
16+
317
### `@krassowski/jupyterlab-lsp 3.2.0` (2021-01-24)
418

519
- features:

atest/examples/Empty.ipynb

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "code",
5+
"execution_count": null,
6+
"metadata": {},
7+
"outputs": [],
8+
"source": []
9+
}
10+
],
11+
"metadata": {
12+
"kernelspec": {
13+
"display_name": "Python 3",
14+
"language": "python",
15+
"name": "python3"
16+
},
17+
"language_info": {
18+
"codemirror_mode": {
19+
"name": "ipython",
20+
"version": 3
21+
},
22+
"file_extension": ".py",
23+
"mimetype": "text/x-python",
24+
"name": "python",
25+
"nbconvert_exporter": "python",
26+
"pygments_lexer": "ipython3",
27+
"version": "3.7.9"
28+
}
29+
},
30+
"nbformat": 4,
31+
"nbformat_minor": 4
32+
}

0 commit comments

Comments
 (0)