Skip to content

Commit

Permalink
Esbonio Language Server Release v0.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Oct 7, 2023
1 parent 8bb149a commit 07f83fd
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 7 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.16.1
current_version = 0.16.2
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(.dev(?P<dev>\d+))?
Expand Down
22 changes: 22 additions & 0 deletions lib/esbonio/CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
v0.16.2 - 2023-10-07
--------------------

Enhancements
^^^^^^^^^^^^

- When creating a Sphinx application instance, the language server will now look in all workspace folders choosing the first valid configuration it finds.
Failing that it will revert to its original behavior of looking in the ``workspaceRoot`` given by the client. (`#467 <https://github.com/swyddfa/esbonio/issues/467>`_)


Fixes
^^^^^

- The server will no longer fail to handle the ``initialize`` request when clients set ``initializationOptions`` to ``null`` (`#586 <https://github.com/swyddfa/esbonio/issues/586>`_)


Misc
^^^^

- Replace ``appdirs`` with ``platformdirs`` by @coloursofnoise (`#621 <https://github.com/swyddfa/esbonio/issues/621>`_)


v0.16.1 - 2023-02-18
--------------------

Expand Down
2 changes: 0 additions & 2 deletions lib/esbonio/changes/467.enhancement.rst

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion lib/esbonio/changes/621.misc.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 @@ -58,7 +58,7 @@
from .rst import RstLanguageServer
from .symbols import SymbolVisitor

__version__ = "0.16.1"
__version__ = "0.16.2"

__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.16.1
version = 0.16.2
description = A Language Server for Sphinx projects.
long_description = file:README.md
long_description_content_type = text/markdown
Expand Down

0 comments on commit 07f83fd

Please sign in to comment.