Skip to content

Commit 07f83fd

Browse files
author
github-actions
committed
Esbonio Language Server Release v0.16.2
1 parent 8bb149a commit 07f83fd

File tree

7 files changed

+25
-7
lines changed

7 files changed

+25
-7
lines changed

lib/esbonio/.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.16.1
2+
current_version = 0.16.2
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(.dev(?P<dev>\d+))?

lib/esbonio/CHANGES.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
v0.16.2 - 2023-10-07
2+
--------------------
3+
4+
Enhancements
5+
^^^^^^^^^^^^
6+
7+
- When creating a Sphinx application instance, the language server will now look in all workspace folders choosing the first valid configuration it finds.
8+
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>`_)
9+
10+
11+
Fixes
12+
^^^^^
13+
14+
- 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>`_)
15+
16+
17+
Misc
18+
^^^^
19+
20+
- Replace ``appdirs`` with ``platformdirs`` by @coloursofnoise (`#621 <https://github.com/swyddfa/esbonio/issues/621>`_)
21+
22+
123
v0.16.1 - 2023-02-18
224
--------------------
325

lib/esbonio/changes/467.enhancement.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

lib/esbonio/changes/586.fix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/esbonio/changes/621.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/esbonio/esbonio/lsp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
from .rst import RstLanguageServer
5959
from .symbols import SymbolVisitor
6060

61-
__version__ = "0.16.1"
61+
__version__ = "0.16.2"
6262

6363
__all__ = [
6464
"CompletionContext",

lib/esbonio/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = esbonio
3-
version = 0.16.1
3+
version = 0.16.2
44
description = A Language Server for Sphinx projects.
55
long_description = file:README.md
66
long_description_content_type = text/markdown

0 commit comments

Comments
 (0)