From 5e05ac1aff4b7a4a030bbc5137814230d62517e1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 15 Oct 2022 09:51:13 +0000 Subject: [PATCH] Pytest LSP Release v0.1.3 --- lib/pytest-lsp/.bumpversion.cfg | 2 +- lib/pytest-lsp/CHANGES.rst | 10 ++++++++++ lib/pytest-lsp/changes/22.fix.rst | 2 -- lib/pytest-lsp/pytest_lsp/__init__.py | 2 +- lib/pytest-lsp/setup.cfg | 2 +- 5 files changed, 13 insertions(+), 5 deletions(-) delete mode 100644 lib/pytest-lsp/changes/22.fix.rst diff --git a/lib/pytest-lsp/.bumpversion.cfg b/lib/pytest-lsp/.bumpversion.cfg index a83ecdf..c4e4dac 100644 --- a/lib/pytest-lsp/.bumpversion.cfg +++ b/lib/pytest-lsp/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.2 +current_version = 0.1.3 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(.dev(?P\d+))? diff --git a/lib/pytest-lsp/CHANGES.rst b/lib/pytest-lsp/CHANGES.rst index 0f858f0..3796476 100644 --- a/lib/pytest-lsp/CHANGES.rst +++ b/lib/pytest-lsp/CHANGES.rst @@ -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 `_) + + v0.1.2 - 2022-07-18 ------------------- diff --git a/lib/pytest-lsp/changes/22.fix.rst b/lib/pytest-lsp/changes/22.fix.rst deleted file mode 100644 index f1c2dd4..0000000 --- a/lib/pytest-lsp/changes/22.fix.rst +++ /dev/null @@ -1,2 +0,0 @@ -- 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. diff --git a/lib/pytest-lsp/pytest_lsp/__init__.py b/lib/pytest-lsp/pytest_lsp/__init__.py index dbdc3d0..8625bb7 100644 --- a/lib/pytest-lsp/pytest_lsp/__init__.py +++ b/lib/pytest-lsp/pytest_lsp/__init__.py @@ -7,7 +7,7 @@ from .plugin import ClientServer from .plugin import ClientServerConfig -__version__ = "0.1.2" +__version__ = "0.1.3" __all__ = [ "Client", diff --git a/lib/pytest-lsp/setup.cfg b/lib/pytest-lsp/setup.cfg index 89fff05..e815744 100644 --- a/lib/pytest-lsp/setup.cfg +++ b/lib/pytest-lsp/setup.cfg @@ -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