Skip to content

Commit

Permalink
Esbonio Language Server Release v0.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 7, 2022
1 parent 27148a9 commit 4b18dad
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 9 deletions.
2 changes: 1 addition & 1 deletion lib/esbonio/.bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.10.2
current_version = 0.10.3
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(.dev(?P<dev>\d+))?
Expand Down
14 changes: 14 additions & 0 deletions lib/esbonio/CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
v0.10.3 - 2022-04-07
--------------------

Fixes
^^^^^

- A client's capabilities is now respected when constructing ``CompletionItems`` (`#270 <https://github.com/swyddfa/esbonio/issues/270>`_)
- Instead of spamming the client with notifications, the language server now reports Sphinx config/build errors as diagnostics. (`#315 <https://github.com/swyddfa/esbonio/issues/315>`_)
- Previews should now work on MacOS (`#341 <https://github.com/swyddfa/esbonio/issues/341>`_)
- Running ``$ esbonio`` directly on the command line now correctly starts the server again (`#346 <https://github.com/swyddfa/esbonio/issues/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 <https://github.com/swyddfa/esbonio/issues/353>`_)


v0.10.2 - 2022-03-22
--------------------

Expand Down
1 change: 0 additions & 1 deletion lib/esbonio/changes/270.fix.rst

This file was deleted.

1 change: 0 additions & 1 deletion lib/esbonio/changes/315.fix.rst

This file was deleted.

1 change: 0 additions & 1 deletion lib/esbonio/changes/341.fix.rst

This file was deleted.

1 change: 0 additions & 1 deletion lib/esbonio/changes/346.fix.rst

This file was deleted.

2 changes: 0 additions & 2 deletions lib/esbonio/changes/353.fix.rst

This file was deleted.

2 changes: 1 addition & 1 deletion lib/esbonio/esbonio/lsp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
from .rst import RstLanguageServer
from .rst import SymbolVisitor

__version__ = "0.10.2"
__version__ = "0.10.3"

__all__ = [
"CompletionContext",
Expand Down
2 changes: 1 addition & 1 deletion lib/esbonio/setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 4b18dad

Please sign in to comment.