diff --git a/lib/lsp-devtools/CHANGES.md b/lib/lsp-devtools/CHANGES.md index c4375d4..dd9d416 100644 --- a/lib/lsp-devtools/CHANGES.md +++ b/lib/lsp-devtools/CHANGES.md @@ -1,3 +1,18 @@ +## v0.2.2 - 2024-01-29 + + +### Enhancements + +- Added formatters `json` and `json-compact` that can be used within format strings. ([#130](https://github.com/swyddfa/lsp-devtools/issues/130)) +- When not printing messages to stdout, the `lsp-devtools record` command now displays a nice visualisation of the traffic between client and server - so that you can see that it's doing something ([#134](https://github.com/swyddfa/lsp-devtools/issues/134)) + +### Fixes + +- The `lsp-devtools record` command will now produce valid JSON when using the `--to-file` option without an explicitly provided format string. ([#130](https://github.com/swyddfa/lsp-devtools/issues/130)) +- The `lsp-devtools agent` now watches for the when the server process exits and closes itself down also. ([#132](https://github.com/swyddfa/lsp-devtools/issues/132)) +- Commands like `lsp-devtools record` should now exit cleanly when hitting `Ctrl-C` ([#133](https://github.com/swyddfa/lsp-devtools/issues/133)) + + ## v0.2.1 - 2023-11-13 diff --git a/lib/lsp-devtools/changes/130.enhancement.md b/lib/lsp-devtools/changes/130.enhancement.md deleted file mode 100644 index 21abf61..0000000 --- a/lib/lsp-devtools/changes/130.enhancement.md +++ /dev/null @@ -1 +0,0 @@ -Added formatters `json` and `json-compact` that can be used within format strings. diff --git a/lib/lsp-devtools/changes/130.fix.md b/lib/lsp-devtools/changes/130.fix.md deleted file mode 100644 index 2c810b2..0000000 --- a/lib/lsp-devtools/changes/130.fix.md +++ /dev/null @@ -1 +0,0 @@ -The `lsp-devtools record` command will now produce valid JSON when using the `--to-file` option without an explicitly provided format string. diff --git a/lib/lsp-devtools/changes/132.fix.md b/lib/lsp-devtools/changes/132.fix.md deleted file mode 100644 index 47ce95c..0000000 --- a/lib/lsp-devtools/changes/132.fix.md +++ /dev/null @@ -1 +0,0 @@ -The `lsp-devtools agent` now watches for the when the server process exits and closes itself down also. diff --git a/lib/lsp-devtools/changes/133.fix.md b/lib/lsp-devtools/changes/133.fix.md deleted file mode 100644 index 7021bf6..0000000 --- a/lib/lsp-devtools/changes/133.fix.md +++ /dev/null @@ -1 +0,0 @@ -Commands like `lsp-devtools record` should now exit cleanly when hitting `Ctrl-C` diff --git a/lib/lsp-devtools/changes/134.enhancement.md b/lib/lsp-devtools/changes/134.enhancement.md deleted file mode 100644 index 35689c8..0000000 --- a/lib/lsp-devtools/changes/134.enhancement.md +++ /dev/null @@ -1 +0,0 @@ -When not printing messages to stdout, the `lsp-devtools record` command now displays a nice visualisation of the traffic between client and server - so that you can see that it's doing something diff --git a/lib/lsp-devtools/lsp_devtools/__init__.py b/lib/lsp-devtools/lsp_devtools/__init__.py index 3ced358..b5fdc75 100644 --- a/lib/lsp-devtools/lsp_devtools/__init__.py +++ b/lib/lsp-devtools/lsp_devtools/__init__.py @@ -1 +1 @@ -__version__ = "0.2.1" +__version__ = "0.2.2"