Skip to content

Commit f4d5cb7

Browse files
committed
Release 1.1.1
1 parent d8abdbe commit f4d5cb7

File tree

8 files changed

+12
-14
lines changed

8 files changed

+12
-14
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
## CHANGELOG
22

3-
### `@krassowski/jupyterlab-lsp 1.1.1` (unreleased)
3+
### `@krassowski/jupyterlab-lsp 1.1.1` (2020-08-05)
44

55
- bug fixes
66

77
- emits console warnings instead of throwing errors in hover handlers and connections ([#299][], [#300][])
8+
- improve URL checks in message handling to enable LaTeX diagnostics to work when configured ([#288][])
89

910
[#299]: https://github.com/krassowski/jupyterlab-lsp/pull/299
1011
[#300]: https://github.com/krassowski/jupyterlab-lsp/pull/300
1112

12-
### `jupyter-lsp 0.9.x` (unreleased)
13+
### `jupyter-lsp 0.9.1` (2020-08-05)
1314

1415
- autodetects the `texlab` language server for `.tex` files ([#288][])
1516
- diagnostics _should_ be provided by `chktex` on save, but don't yet appear,

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ variables:
1313
ATEST_RETRIES: 3
1414
YARN_CACHE_FOLDER: $(Pipeline.Workspace)/.yarn
1515

16-
PY_JLSP_VERSION: 0.9.0
17-
JS_JLLSP_VERSION: 1.1.0
16+
PY_JLSP_VERSION: 0.9.1
17+
JS_JLLSP_VERSION: 1.1.1
1818
JS_JLG2D_VERSION: 1.0.0
1919

2020
FIRST_PARTY_LABEXTENSIONS: >-

packages/jupyterlab-lsp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@krassowski/jupyterlab-lsp",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Language Server Protocol integration for JupyterLab",
55
"keywords": [
66
"jupyter",

packages/metapackage/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@krassowski/jupyterlab-lsp-metapackage",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "JupyterLab LSP - Meta Package. All of the packages used by JupyterLab LSP",
55
"homepage": "https://github.com/krassowski/jupyterlab-lsp",
66
"bugs": {

py_src/jupyter_lsp/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
""" single source of truth for jupyter_lsp version
22
"""
3-
__version__ = "0.9.0"
3+
__version__ = "0.9.1"

py_src/jupyter_lsp/tests/conftest.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@
33
import shutil
44
from typing import Text
55

6-
from notebook.notebookapp import NotebookApp
7-
from pytest import fixture
8-
from tornado.queues import Queue
9-
106
# local imports
117
from jupyter_lsp import LanguageServerManager
128
from jupyter_lsp.handlers import LanguageServersHandler, LanguageServerWebSocketHandler
9+
from notebook.notebookapp import NotebookApp
10+
from pytest import fixture
11+
from tornado.queues import Queue
1312

1413
# these should always be available in a test environment ()
1514
KNOWN_SERVERS = [

py_src/jupyter_lsp/tests/test_bad_spec.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import pytest
22
import traitlets
3-
43
from jupyter_lsp.session import LanguageServerSession
54

65

py_src/jupyter_lsp/tests/test_listener.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33

44
import pytest
55
import traitlets
6-
from tornado.queues import Queue
7-
86
from jupyter_lsp import lsp_message_listener
7+
from tornado.queues import Queue
98

109

1110
@pytest.mark.parametrize("bad_string", ["not-a-function", "jupyter_lsp.__version__"])

0 commit comments

Comments
 (0)