From b713dcb342af520df5ac151109379c2866272195 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 28 Aug 2024 18:57:56 +0000 Subject: [PATCH] pytest-lsp v0.4.3 --- lib/pytest-lsp/CHANGES.md | 7 +++++++ lib/pytest-lsp/changes/173.fix.md | 1 - lib/pytest-lsp/pytest_lsp/client.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) delete mode 100644 lib/pytest-lsp/changes/173.fix.md diff --git a/lib/pytest-lsp/CHANGES.md b/lib/pytest-lsp/CHANGES.md index 68b7c73..e382590 100644 --- a/lib/pytest-lsp/CHANGES.md +++ b/lib/pytest-lsp/CHANGES.md @@ -1,3 +1,10 @@ +## v0.4.3 - 2024-08-28 + +### Fixes + +- The client now waits for the server process to gracefully exit by @OhioDschungel6 ([#173](https://github.com/swyddfa/lsp-devtools/issues/173)) + + ## v0.4.2 - 2024-05-22 diff --git a/lib/pytest-lsp/changes/173.fix.md b/lib/pytest-lsp/changes/173.fix.md deleted file mode 100644 index 68dd5b4..0000000 --- a/lib/pytest-lsp/changes/173.fix.md +++ /dev/null @@ -1 +0,0 @@ -The client now waits for the server process to gracefully exit by @OhioDschungel6 diff --git a/lib/pytest-lsp/pytest_lsp/client.py b/lib/pytest-lsp/pytest_lsp/client.py index 213bc44..0e09537 100644 --- a/lib/pytest-lsp/pytest_lsp/client.py +++ b/lib/pytest-lsp/pytest_lsp/client.py @@ -35,7 +35,7 @@ from typing import Union -__version__ = "0.4.2" +__version__ = "0.4.3" logger = logging.getLogger(__name__)