Skip to content

Commit

Permalink
lsp-devtools v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Oct 6, 2023
1 parent e2299d9 commit 669d03a
Show file tree
Hide file tree
Showing 12 changed files with 31 additions and 13 deletions.
2 changes: 1 addition & 1 deletion lib/lsp-devtools/.bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.1
current_version = 0.2.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(.dev(?P<dev>\d+))?
Expand Down
28 changes: 28 additions & 0 deletions lib/lsp-devtools/CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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 <https://github.com/swyddfa/lsp-devtools/issues/83>`_)


Fixes
^^^^^

- The ``lsp-devtools agent`` command no longer fails to exit once an LSP session closes. (`#17 <https://github.com/swyddfa/lsp-devtools/issues/17>`_)
- ``lsp-devtools record`` no longer emits a ``ResourceWarning`` (`#28 <https://github.com/swyddfa/lsp-devtools/issues/28>`_)
- As a consequence of the new architecture, commands like ``lsp-devtools record`` no longer miss the start of an LSP session (`#29 <https://github.com/swyddfa/lsp-devtools/issues/29>`_)
- ``lsp-devtools agent`` no longer emits ``Unable to send data, no available transport!`` messages (`#38 <https://github.com/swyddfa/lsp-devtools/issues/38>`_)


Misc
^^^^

- The ``lsp-devtools agent`` now uses a TCP connection, which should make distribution easier (`#37 <https://github.com/swyddfa/lsp-devtools/issues/37>`_)
- Drop Python 3.7 support (`#77 <https://github.com/swyddfa/lsp-devtools/issues/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 <https://github.com/swyddfa/lsp-devtools/issues/83>`_)


v0.1.1 - 2023-01-14
-------------------

Expand Down
1 change: 0 additions & 1 deletion lib/lsp-devtools/changes/17.fix.rst

This file was deleted.

1 change: 0 additions & 1 deletion lib/lsp-devtools/changes/28.fix.rst

This file was deleted.

1 change: 0 additions & 1 deletion lib/lsp-devtools/changes/29.fix.rst

This file was deleted.

1 change: 0 additions & 1 deletion lib/lsp-devtools/changes/37.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion lib/lsp-devtools/changes/38.fix.rst

This file was deleted.

1 change: 0 additions & 1 deletion lib/lsp-devtools/changes/77.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion lib/lsp-devtools/changes/83.feature.rst

This file was deleted.

3 changes: 0 additions & 3 deletions lib/lsp-devtools/changes/83.misc.rst

This file was deleted.

2 changes: 1 addition & 1 deletion lib/lsp-devtools/lsp_devtools/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.1"
__version__ = "0.2.0"
2 changes: 1 addition & 1 deletion lib/lsp-devtools/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 669d03a

Please sign in to comment.