Skip to content

Commit f41c261

Browse files
Esbonio Language Server Release v0.16.5
1 parent ea64ef1 commit f41c261

File tree

6 files changed

+20
-7
lines changed

6 files changed

+20
-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.4
2+
current_version = 0.16.5
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: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
v0.16.5 - 2024-09-23
2+
--------------------
3+
4+
Fixes
5+
^^^^^
6+
7+
- Changed the preview server to use a Thread instead of a Process to prevent deadlocks on certain systems by @Nitorac (`#790 <https://github.com/swyddfa/esbonio/issues/790>`_)
8+
9+
10+
Misc
11+
^^^^
12+
13+
- Pin pygls ``<2`` (`#898 <https://github.com/swyddfa/esbonio/issues/898>`_)
14+
15+
116
v0.16.4 - 2024-01-11
217
--------------------
318

lib/esbonio/changes/790.fix.rst

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

lib/esbonio/changes/898.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.4"
61+
__version__ = "0.16.5"
6262

6363
__all__ = [
6464
"CompletionContext",

lib/esbonio/setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[metadata]
22
name = esbonio
3-
version = 0.16.4
3+
version = 0.16.5
44
description = A Language Server for Sphinx projects.
55
long_description = file:README.md
66
long_description_content_type = text/markdown
77
author = Alex Carney
88
author_email = [email protected]
9-
url = https://docs.esbon.io/en/esbonio-language-server-v0.16.4/
9+
url = https://docs.esbon.io/en/esbonio-language-server-v0.16.5/
1010
project_urls =
1111
Bug Tracker = https://github.com/swyddfa/esbonio/issues
12-
Documentation = https://docs.esbon.io/en/esbonio-language-server-v0.16.4/
12+
Documentation = https://docs.esbon.io/en/esbonio-language-server-v0.16.5/
1313
Source Code = https://github.com/swyddfa/esbonio
1414
license = MIT
1515
classifiers =

0 commit comments

Comments
 (0)