Skip to content

Commit 5e05ac1

Browse files
Pytest LSP Release v0.1.3
1 parent a63dc2c commit 5e05ac1

5 files changed

Lines changed: 13 additions & 5 deletions

File tree

lib/pytest-lsp/.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.2
2+
current_version = 0.1.3
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(.dev(?P<dev>\d+))?

lib/pytest-lsp/CHANGES.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
v0.1.3 - 2022-10-15
2+
-------------------
3+
4+
Fixes
5+
^^^^^
6+
7+
- - Check that server provided for testing doesn't crash within the first 0.1 seconds
8+
- Return `INITIALIZE` response from `ClientServer.start()`. This allows tests to assert against the server's `INITIALIZE` response without resending the `INITIALIZE` request in the actual test. (`#22 <https://github.com/alcarney/lsp-devtools/issues/22>`_)
9+
10+
111
v0.1.2 - 2022-07-18
212
-------------------
313

lib/pytest-lsp/changes/22.fix.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

lib/pytest-lsp/pytest_lsp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from .plugin import ClientServer
88
from .plugin import ClientServerConfig
99

10-
__version__ = "0.1.2"
10+
__version__ = "0.1.3"
1111

1212
__all__ = [
1313
"Client",

lib/pytest-lsp/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = pytest-lsp
3-
version = 0.1.2
3+
version = 0.1.3
44
description = Pytest plugin for end-to-end testing of language servers
55
long_description = file:README.md
66
long_description_content_type = text/markdown

0 commit comments

Comments
 (0)