Skip to content

Commit

Permalink
Pytest LSP Release v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 15, 2022
1 parent a63dc2c commit 5e05ac1
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/pytest-lsp/.bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.2
current_version = 0.1.3
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(.dev(?P<dev>\d+))?
Expand Down
10 changes: 10 additions & 0 deletions lib/pytest-lsp/CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
v0.1.3 - 2022-10-15
-------------------

Fixes
^^^^^

- - Check that server provided for testing doesn't crash within the first 0.1 seconds
- 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>`_)


v0.1.2 - 2022-07-18
-------------------

Expand Down
2 changes: 0 additions & 2 deletions lib/pytest-lsp/changes/22.fix.rst

This file was deleted.

2 changes: 1 addition & 1 deletion lib/pytest-lsp/pytest_lsp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from .plugin import ClientServer
from .plugin import ClientServerConfig

__version__ = "0.1.2"
__version__ = "0.1.3"

__all__ = [
"Client",
Expand Down
2 changes: 1 addition & 1 deletion lib/pytest-lsp/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pytest-lsp
version = 0.1.2
version = 0.1.3
description = Pytest plugin for end-to-end testing of language servers
long_description = file:README.md
long_description_content_type = text/markdown
Expand Down

0 comments on commit 5e05ac1

Please sign in to comment.