diff --git a/lib/lsp-devtools/.bumpversion.cfg b/lib/lsp-devtools/.bumpversion.cfg index c067de5..44f186f 100644 --- a/lib/lsp-devtools/.bumpversion.cfg +++ b/lib/lsp-devtools/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.1 +current_version = 0.2.0 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(.dev(?P\d+))? diff --git a/lib/lsp-devtools/CHANGES.rst b/lib/lsp-devtools/CHANGES.rst index 1eda776..93ee611 100644 --- a/lib/lsp-devtools/CHANGES.rst +++ b/lib/lsp-devtools/CHANGES.rst @@ -1,3 +1,31 @@ +v0.2.0 - 2023-10-06 +------------------- + +Features +^^^^^^^^ + +- **Experimental** Add proof of concept ``lsp-devtools client`` command that builds on textual's ``TextArea`` widget to offer an interactive language server client. (`#83 `_) + + +Fixes +^^^^^ + +- The ``lsp-devtools agent`` command no longer fails to exit once an LSP session closes. (`#17 `_) +- ``lsp-devtools record`` no longer emits a ``ResourceWarning`` (`#28 `_) +- As a consequence of the new architecture, commands like ``lsp-devtools record`` no longer miss the start of an LSP session (`#29 `_) +- ``lsp-devtools agent`` no longer emits ``Unable to send data, no available transport!`` messages (`#38 `_) + + +Misc +^^^^ + +- The ``lsp-devtools agent`` now uses a TCP connection, which should make distribution easier (`#37 `_) +- Drop Python 3.7 support (`#77 `_) +- The ``lsp-devtools capabilities`` command has been removed in favour of ``lsp-devtools record`` + + The ``lsp-devtools tui`` command has been renamed to ``lsp-devtools inspect`` (`#83 `_) + + v0.1.1 - 2023-01-14 ------------------- diff --git a/lib/lsp-devtools/changes/17.fix.rst b/lib/lsp-devtools/changes/17.fix.rst deleted file mode 100644 index af9cc8e..0000000 --- a/lib/lsp-devtools/changes/17.fix.rst +++ /dev/null @@ -1 +0,0 @@ -The ``lsp-devtools agent`` command no longer fails to exit once an LSP session closes. diff --git a/lib/lsp-devtools/changes/28.fix.rst b/lib/lsp-devtools/changes/28.fix.rst deleted file mode 100644 index d4884d8..0000000 --- a/lib/lsp-devtools/changes/28.fix.rst +++ /dev/null @@ -1 +0,0 @@ -``lsp-devtools record`` no longer emits a ``ResourceWarning`` diff --git a/lib/lsp-devtools/changes/29.fix.rst b/lib/lsp-devtools/changes/29.fix.rst deleted file mode 100644 index bef6b1e..0000000 --- a/lib/lsp-devtools/changes/29.fix.rst +++ /dev/null @@ -1 +0,0 @@ -As a consequence of the new architecture, commands like ``lsp-devtools record`` no longer miss the start of an LSP session diff --git a/lib/lsp-devtools/changes/37.misc.rst b/lib/lsp-devtools/changes/37.misc.rst deleted file mode 100644 index a42dd18..0000000 --- a/lib/lsp-devtools/changes/37.misc.rst +++ /dev/null @@ -1 +0,0 @@ -The ``lsp-devtools agent`` now uses a TCP connection, which should make distribution easier diff --git a/lib/lsp-devtools/changes/38.fix.rst b/lib/lsp-devtools/changes/38.fix.rst deleted file mode 100644 index eb9bd1f..0000000 --- a/lib/lsp-devtools/changes/38.fix.rst +++ /dev/null @@ -1 +0,0 @@ -``lsp-devtools agent`` no longer emits ``Unable to send data, no available transport!`` messages diff --git a/lib/lsp-devtools/changes/77.misc.rst b/lib/lsp-devtools/changes/77.misc.rst deleted file mode 100644 index aa98fdb..0000000 --- a/lib/lsp-devtools/changes/77.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Drop Python 3.7 support diff --git a/lib/lsp-devtools/changes/83.feature.rst b/lib/lsp-devtools/changes/83.feature.rst deleted file mode 100644 index a755fc1..0000000 --- a/lib/lsp-devtools/changes/83.feature.rst +++ /dev/null @@ -1 +0,0 @@ -**Experimental** Add proof of concept ``lsp-devtools client`` command that builds on textual's ``TextArea`` widget to offer an interactive language server client. diff --git a/lib/lsp-devtools/changes/83.misc.rst b/lib/lsp-devtools/changes/83.misc.rst deleted file mode 100644 index 864e34e..0000000 --- a/lib/lsp-devtools/changes/83.misc.rst +++ /dev/null @@ -1,3 +0,0 @@ -The ``lsp-devtools capabilities`` command has been removed in favour of ``lsp-devtools record`` - -The ``lsp-devtools tui`` command has been renamed to ``lsp-devtools inspect`` diff --git a/lib/lsp-devtools/lsp_devtools/__init__.py b/lib/lsp-devtools/lsp_devtools/__init__.py index 485f44a..d3ec452 100644 --- a/lib/lsp-devtools/lsp_devtools/__init__.py +++ b/lib/lsp-devtools/lsp_devtools/__init__.py @@ -1 +1 @@ -__version__ = "0.1.1" +__version__ = "0.2.0" diff --git a/lib/lsp-devtools/pyproject.toml b/lib/lsp-devtools/pyproject.toml index 1d37dfc..d0de8ab 100644 --- a/lib/lsp-devtools/pyproject.toml +++ b/lib/lsp-devtools/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "lsp-devtools" -version = "0.1.1" +version = "0.2.0" description = "Developer tooling for language servers" readme = "README.md" requires-python = ">=3.8"