diff --git a/lib/pytest-lsp/CHANGES.md b/lib/pytest-lsp/CHANGES.md index e382590..2a60df2 100644 --- a/lib/pytest-lsp/CHANGES.md +++ b/lib/pytest-lsp/CHANGES.md @@ -1,3 +1,17 @@ +## v1.0.0b1 - 2024-09-04 + +### Breaking Changes + +- Drop Python 3.8 support ([#178](https://github.com/swyddfa/lsp-devtools/issues/178)) +- Drop support for pytest v7 ([#180](https://github.com/swyddfa/lsp-devtools/issues/180)) + +### Misc + +- Migrate to pygls v2 ([#177](https://github.com/swyddfa/lsp-devtools/issues/177)) +- Add support for Python 3.13 ([#180](https://github.com/swyddfa/lsp-devtools/issues/180)) +- Bump minimum `pytest-asyncio` verision to `v0.24` ([#182](https://github.com/swyddfa/lsp-devtools/issues/182)) + + ## v0.4.3 - 2024-08-28 ### Fixes diff --git a/lib/pytest-lsp/changes/177.misc.md b/lib/pytest-lsp/changes/177.misc.md deleted file mode 100644 index d89c711..0000000 --- a/lib/pytest-lsp/changes/177.misc.md +++ /dev/null @@ -1 +0,0 @@ -Migrate to pygls v2 diff --git a/lib/pytest-lsp/changes/178.breaking.md b/lib/pytest-lsp/changes/178.breaking.md deleted file mode 100644 index a7d42d9..0000000 --- a/lib/pytest-lsp/changes/178.breaking.md +++ /dev/null @@ -1 +0,0 @@ -Drop Python 3.8 support diff --git a/lib/pytest-lsp/changes/180.breaking.md b/lib/pytest-lsp/changes/180.breaking.md deleted file mode 100644 index 2d0b48c..0000000 --- a/lib/pytest-lsp/changes/180.breaking.md +++ /dev/null @@ -1 +0,0 @@ -Drop support for pytest v7 diff --git a/lib/pytest-lsp/changes/180.misc.md b/lib/pytest-lsp/changes/180.misc.md deleted file mode 100644 index f32ba63..0000000 --- a/lib/pytest-lsp/changes/180.misc.md +++ /dev/null @@ -1 +0,0 @@ -Add support for Python 3.13 diff --git a/lib/pytest-lsp/changes/182.misc.md b/lib/pytest-lsp/changes/182.misc.md deleted file mode 100644 index 0c3010e..0000000 --- a/lib/pytest-lsp/changes/182.misc.md +++ /dev/null @@ -1 +0,0 @@ -Bump minimum `pytest-asyncio` verision to `v0.24` diff --git a/lib/pytest-lsp/pytest_lsp/client.py b/lib/pytest-lsp/pytest_lsp/client.py index ee28e4a..f573685 100644 --- a/lib/pytest-lsp/pytest_lsp/client.py +++ b/lib/pytest-lsp/pytest_lsp/client.py @@ -26,7 +26,7 @@ from typing import Any -__version__ = "1.0.0b0" +__version__ = "1.0.0b1" logger = logging.getLogger(__name__)