Skip to content

Commit 47df3b7

Browse files
Pytest LSP Release v0.2.0
1 parent c77ef64 commit 47df3b7

File tree

6 files changed

+22
-9
lines changed

6 files changed

+22
-9
lines changed

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.3
2+
current_version = 0.2.0
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: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
v0.2.0 - 2023-01-10
2+
-------------------
3+
4+
Features
5+
^^^^^^^^
6+
7+
- The ``LanguageClient`` now exposes methods covering the full LSP spec thanks to autogenerating its client from type definitions provided by ``lsprotocol`` (`#25 <https://github.com/alcarney/lsp-devtools/issues/25>`_)
8+
9+
10+
Misc
11+
^^^^
12+
13+
- Support for Python 3.6 has been dropped.
14+
15+
Support for Python 3.11 has been added.
16+
17+
Upgraded to pygls 1.0. (`#25 <https://github.com/alcarney/lsp-devtools/issues/25>`_)
18+
19+
120
v0.1.3 - 2022-10-15
221
-------------------
322

lib/pytest-lsp/changes/25.feature.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/pytest-lsp/changes/25.misc.rst

Lines changed: 0 additions & 5 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.3"
10+
__version__ = "0.2.0"
1111

1212
__all__ = [
1313
"ClientServer",

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.3
3+
version = 0.2.0
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)