Skip to content

Commit 3543529

Browse files
LSP Devtools Release v0.1.0
1 parent 47df3b7 commit 3543529

File tree

7 files changed

+28
-15
lines changed

7 files changed

+28
-15
lines changed

lib/lsp-devtools/.bumpversion.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[bumpversion]
2-
current_version = 0.0.3
2+
current_version = 0.1.0
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(.dev(?P<dev>\d+))?
6-
serialize =
6+
serialize =
77
{major}.{minor}.{patch}.dev{dev}
88
{major}.{minor}.{patch}
99

lib/lsp-devtools/CHANGES.rst

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
v0.1.0 - 2023-01-10
2+
-------------------
3+
4+
Features
5+
^^^^^^^^
6+
7+
- Updated ``record`` command.
8+
9+
It is now capable of live streaming messages sent between a client and server to stdout, plain text files or a SQLite database.
10+
11+
It also offers a number of filters for selecting the messages you wish to record, as well as a (WIP!) format string syntax for controlling how messages are formatted. (`#26 <https://github.com/alcarney/lsp-devtools/issues/26>`_)
12+
- Add ``tui``command.
13+
14+
A proof of concept devtools TUI implemented in textual, that live updates with the LSP messages sent between client and server!
15+
16+
Requires the server be wrapped in an ``agent``. (`#27 <https://github.com/alcarney/lsp-devtools/issues/27>`_)
17+
18+
19+
Misc
20+
^^^^
21+
22+
- Migrated to ``v1.0`` (`#26 <https://github.com/alcarney/lsp-devtools/issues/26>`_)
23+
24+
125
v0.0.3 - 2022-07-17
226
-------------------
327

lib/lsp-devtools/changes/26.feature.rst

Lines changed: 0 additions & 5 deletions
This file was deleted.

lib/lsp-devtools/changes/26.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/lsp-devtools/changes/27.feature.rst

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.3"
1+
__version__ = "0.1.0"

lib/lsp-devtools/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "lsp-devtools"
7-
version = "0.0.3"
7+
version = "0.1.0"
88
description = "Developer tooling for language servers"
99
readme = "README.md"
1010
requires-python = ">=3.7"

0 commit comments

Comments
 (0)