diff --git a/lib/esbonio/.bumpversion.cfg b/lib/esbonio/.bumpversion.cfg index 0bc8c0e2..5f4bcb17 100644 --- a/lib/esbonio/.bumpversion.cfg +++ b/lib/esbonio/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.2 +current_version = 0.10.3 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 b47b48da..adde0cd5 100644 --- a/lib/esbonio/CHANGES.rst +++ b/lib/esbonio/CHANGES.rst @@ -1,3 +1,17 @@ +v0.10.3 - 2022-04-07 +-------------------- + +Fixes +^^^^^ + +- A client's capabilities is now respected when constructing ``CompletionItems`` (`#270 `_) +- Instead of spamming the client with notifications, the language server now reports Sphinx config/build errors as diagnostics. (`#315 `_) +- Previews should now work on MacOS (`#341 `_) +- Running ``$ esbonio`` directly on the command line now correctly starts the server again (`#346 `_) +- The language server should no longer fail when suggesting completions for directives that are not class based. + e.g. ``DirectiveContainer`` based directives from the ``breathe`` extension. (`#353 `_) + + v0.10.2 - 2022-03-22 -------------------- diff --git a/lib/esbonio/changes/270.fix.rst b/lib/esbonio/changes/270.fix.rst deleted file mode 100644 index 074a66c4..00000000 --- a/lib/esbonio/changes/270.fix.rst +++ /dev/null @@ -1 +0,0 @@ -A client's capabilities is now respected when constructing ``CompletionItems`` diff --git a/lib/esbonio/changes/315.fix.rst b/lib/esbonio/changes/315.fix.rst deleted file mode 100644 index 6554d29d..00000000 --- a/lib/esbonio/changes/315.fix.rst +++ /dev/null @@ -1 +0,0 @@ -Instead of spamming the client with notifications, the language server now reports Sphinx config/build errors as diagnostics. diff --git a/lib/esbonio/changes/341.fix.rst b/lib/esbonio/changes/341.fix.rst deleted file mode 100644 index 7cb3ec79..00000000 --- a/lib/esbonio/changes/341.fix.rst +++ /dev/null @@ -1 +0,0 @@ -Previews should now work on MacOS diff --git a/lib/esbonio/changes/346.fix.rst b/lib/esbonio/changes/346.fix.rst deleted file mode 100644 index 6c9df6cf..00000000 --- a/lib/esbonio/changes/346.fix.rst +++ /dev/null @@ -1 +0,0 @@ -Running ``$ esbonio`` directly on the command line now correctly starts the server again diff --git a/lib/esbonio/changes/353.fix.rst b/lib/esbonio/changes/353.fix.rst deleted file mode 100644 index 046bf063..00000000 --- a/lib/esbonio/changes/353.fix.rst +++ /dev/null @@ -1,2 +0,0 @@ -The language server should no longer fail when suggesting completions for directives that are not class based. -e.g. ``DirectiveContainer`` based directives from the ``breathe`` extension. diff --git a/lib/esbonio/esbonio/lsp/__init__.py b/lib/esbonio/esbonio/lsp/__init__.py index 9bd362cb..daf3cf07 100644 --- a/lib/esbonio/esbonio/lsp/__init__.py +++ b/lib/esbonio/esbonio/lsp/__init__.py @@ -46,7 +46,7 @@ from .rst import RstLanguageServer from .rst import SymbolVisitor -__version__ = "0.10.2" +__version__ = "0.10.3" __all__ = [ "CompletionContext", diff --git a/lib/esbonio/setup.cfg b/lib/esbonio/setup.cfg index 57d9e32a..04015aff 100644 --- a/lib/esbonio/setup.cfg +++ b/lib/esbonio/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = esbonio -version = 0.10.2 +version = 0.10.3 description = A Language Server for Sphinx projects. long_description = file:README.md long_description_content_type = text/markdown