diff --git a/lib/esbonio/.bumpversion.cfg b/lib/esbonio/.bumpversion.cfg index adec8d92..0638bdd2 100644 --- a/lib/esbonio/.bumpversion.cfg +++ b/lib/esbonio/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.1 +current_version = 0.11.2 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(.dev(?P\d+))? diff --git a/lib/esbonio/CHANGES.rst b/lib/esbonio/CHANGES.rst index 405f1e59..9056c68c 100644 --- a/lib/esbonio/CHANGES.rst +++ b/lib/esbonio/CHANGES.rst @@ -1,3 +1,19 @@ +v0.11.2 - 2022-05-09 +-------------------- + +Enhancements +^^^^^^^^^^^^ + +- Add ``esbonio.lsp.rst._record`` and ``esbonio.lsp.sphinx._record`` startup modules. + These can be used to record all LSP client-sever communication to a text file. (`#380 `_) + + +Fixes +^^^^^ + +- The language server now detects functionality bundled with standard Sphinx extensions (`#381 `_) + + v0.11.1 - 2022-04-26 -------------------- diff --git a/lib/esbonio/changes/380.enhancement.rst b/lib/esbonio/changes/380.enhancement.rst deleted file mode 100644 index d721efc7..00000000 --- a/lib/esbonio/changes/380.enhancement.rst +++ /dev/null @@ -1,2 +0,0 @@ -Add ``esbonio.lsp.rst._record`` and ``esbonio.lsp.sphinx._record`` startup modules. -These can be used to record all LSP client-sever communication to a text file. diff --git a/lib/esbonio/changes/381.fix.rst b/lib/esbonio/changes/381.fix.rst deleted file mode 100644 index f2619cc5..00000000 --- a/lib/esbonio/changes/381.fix.rst +++ /dev/null @@ -1 +0,0 @@ -The language server now detects functionality bundled with standard Sphinx extensions diff --git a/lib/esbonio/esbonio/lsp/__init__.py b/lib/esbonio/esbonio/lsp/__init__.py index e00e0226..84f971e6 100644 --- a/lib/esbonio/esbonio/lsp/__init__.py +++ b/lib/esbonio/esbonio/lsp/__init__.py @@ -49,7 +49,7 @@ from .rst import RstLanguageServer from .rst import SymbolVisitor -__version__ = "0.11.1" +__version__ = "0.11.2" __all__ = [ "CompletionContext", diff --git a/lib/esbonio/setup.cfg b/lib/esbonio/setup.cfg index e1f4acbf..118feca4 100644 --- a/lib/esbonio/setup.cfg +++ b/lib/esbonio/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = esbonio -version = 0.11.1 +version = 0.11.2 description = A Language Server for Sphinx projects. long_description = file:README.md long_description_content_type = text/markdown @@ -33,7 +33,7 @@ include_package_data = True install_requires = appdirs sphinx - pygls>=0.11.1,<0.12.0 + pygls>=0.11.2,<0.12.0 pyspellchecker typing-extensions