From 084f934d24ea54c3c6b36f5915f053aed7cf6d40 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 21:59:17 +0000 Subject: [PATCH] pytest-lsp v0.4.1 --- lib/pytest-lsp/CHANGES.md | 20 ++++++++++++++++++++ lib/pytest-lsp/changes/119.fix.rst | 1 - lib/pytest-lsp/changes/126.misc.md | 1 - lib/pytest-lsp/changes/142.capability.md | 1 - lib/pytest-lsp/changes/143.enhancement.md | 1 - lib/pytest-lsp/pytest_lsp/client.py | 2 +- 6 files changed, 21 insertions(+), 5 deletions(-) delete mode 100644 lib/pytest-lsp/changes/119.fix.rst delete mode 100644 lib/pytest-lsp/changes/126.misc.md delete mode 100644 lib/pytest-lsp/changes/142.capability.md delete mode 100644 lib/pytest-lsp/changes/143.enhancement.md diff --git a/lib/pytest-lsp/CHANGES.md b/lib/pytest-lsp/CHANGES.md index f374374..bb901c3 100644 --- a/lib/pytest-lsp/CHANGES.md +++ b/lib/pytest-lsp/CHANGES.md @@ -1,3 +1,23 @@ +## v0.4.1 - 2024-02-07 + + +### Enhancements + +- When a test fails `pytest-lsp` will now show the server's `stderr` output (if any) ([#143](https://github.com/swyddfa/lsp-devtools/issues/143)) + +### Client Capabilities + +- Add client capabilities for Emacs v29.1 ([#142](https://github.com/swyddfa/lsp-devtools/issues/142)) + +### Fixes + +- `LspSpecificationWarnings` will no longer be incorrectly emitted when a client does indeed support `window/workDoneProgress/create` requests ([#119](https://github.com/swyddfa/lsp-devtools/issues/119)) + +### Misc + +- Bump minimum version of `pytest-asyncio` to `0.23.0` ([#126](https://github.com/swyddfa/lsp-devtools/issues/126)) + + ## v0.4.0 - 2023-11-13 diff --git a/lib/pytest-lsp/changes/119.fix.rst b/lib/pytest-lsp/changes/119.fix.rst deleted file mode 100644 index cf7c6d2..0000000 --- a/lib/pytest-lsp/changes/119.fix.rst +++ /dev/null @@ -1 +0,0 @@ -`LspSpecificationWarnings` will no longer be incorrectly emitted when a client does indeed support `window/workDoneProgress/create` requests diff --git a/lib/pytest-lsp/changes/126.misc.md b/lib/pytest-lsp/changes/126.misc.md deleted file mode 100644 index ebf9e33..0000000 --- a/lib/pytest-lsp/changes/126.misc.md +++ /dev/null @@ -1 +0,0 @@ -Bump minimum version of `pytest-asyncio` to `0.23.0` diff --git a/lib/pytest-lsp/changes/142.capability.md b/lib/pytest-lsp/changes/142.capability.md deleted file mode 100644 index 2271928..0000000 --- a/lib/pytest-lsp/changes/142.capability.md +++ /dev/null @@ -1 +0,0 @@ -Add client capabilities for Emacs v29.1 diff --git a/lib/pytest-lsp/changes/143.enhancement.md b/lib/pytest-lsp/changes/143.enhancement.md deleted file mode 100644 index 4795a08..0000000 --- a/lib/pytest-lsp/changes/143.enhancement.md +++ /dev/null @@ -1 +0,0 @@ -When a test fails `pytest-lsp` will now show the server's `stderr` output (if any) diff --git a/lib/pytest-lsp/pytest_lsp/client.py b/lib/pytest-lsp/pytest_lsp/client.py index f93b3e3..af34fe3 100644 --- a/lib/pytest-lsp/pytest_lsp/client.py +++ b/lib/pytest-lsp/pytest_lsp/client.py @@ -31,7 +31,7 @@ import importlib.resources as resources # type: ignore[no-redef] -__version__ = "0.4.0" +__version__ = "0.4.1" logger = logging.getLogger(__name__)