From 53a4926a555bf2b552b94fae76e4203ca3afb589 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 May 2024 18:51:27 +0000 Subject: [PATCH] pytest-lsp v0.4.2 --- lib/pytest-lsp/CHANGES.md | 12 ++++++++++++ lib/pytest-lsp/changes/145.misc.md | 1 - lib/pytest-lsp/changes/164.capability.md | 1 - lib/pytest-lsp/pytest_lsp/client.py | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) delete mode 100644 lib/pytest-lsp/changes/145.misc.md delete mode 100644 lib/pytest-lsp/changes/164.capability.md diff --git a/lib/pytest-lsp/CHANGES.md b/lib/pytest-lsp/CHANGES.md index bb901c3..68b7c73 100644 --- a/lib/pytest-lsp/CHANGES.md +++ b/lib/pytest-lsp/CHANGES.md @@ -1,3 +1,15 @@ +## v0.4.2 - 2024-05-22 + + +### Client Capabilities + +- Add client capabilities for Neovim v0.10.0 ([#164](https://github.com/swyddfa/lsp-devtools/issues/164)) + +### Misc + +- Start testing against pytest v8 ([#145](https://github.com/swyddfa/lsp-devtools/issues/145)) + + ## v0.4.1 - 2024-02-07 diff --git a/lib/pytest-lsp/changes/145.misc.md b/lib/pytest-lsp/changes/145.misc.md deleted file mode 100644 index 05b87bd..0000000 --- a/lib/pytest-lsp/changes/145.misc.md +++ /dev/null @@ -1 +0,0 @@ -Start testing against pytest v8 diff --git a/lib/pytest-lsp/changes/164.capability.md b/lib/pytest-lsp/changes/164.capability.md deleted file mode 100644 index 00eee89..0000000 --- a/lib/pytest-lsp/changes/164.capability.md +++ /dev/null @@ -1 +0,0 @@ -Add client capabilities for Neovim v0.10.0 diff --git a/lib/pytest-lsp/pytest_lsp/client.py b/lib/pytest-lsp/pytest_lsp/client.py index d041e16..33c6dd9 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.1" +__version__ = "0.4.2" logger = logging.getLogger(__name__)