Skip to content

Commit

Permalink
Esbonio Language Server Release v0.16.5
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 23, 2024
1 parent ea64ef1 commit f41c261
Show file tree
Hide file tree
Showing 6 changed files with 20 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.4
current_version = 0.16.5
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(.dev(?P<dev>\d+))?
Expand Down
15 changes: 15 additions & 0 deletions lib/esbonio/CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
v0.16.5 - 2024-09-23
--------------------

Fixes
^^^^^

- 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>`_)


Misc
^^^^

- Pin pygls ``<2`` (`#898 <https://github.com/swyddfa/esbonio/issues/898>`_)


v0.16.4 - 2024-01-11
--------------------

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

This file was deleted.

1 change: 0 additions & 1 deletion lib/esbonio/changes/898.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.4"
__version__ = "0.16.5"

__all__ = [
"CompletionContext",
Expand Down
6 changes: 3 additions & 3 deletions lib/esbonio/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[metadata]
name = esbonio
version = 0.16.4
version = 0.16.5
description = A Language Server for Sphinx projects.
long_description = file:README.md
long_description_content_type = text/markdown
author = Alex Carney
author_email = alcarneyme@gmail.com
url = https://docs.esbon.io/en/esbonio-language-server-v0.16.4/
url = https://docs.esbon.io/en/esbonio-language-server-v0.16.5/
project_urls =
Bug Tracker = https://github.com/swyddfa/esbonio/issues
Documentation = https://docs.esbon.io/en/esbonio-language-server-v0.16.4/
Documentation = https://docs.esbon.io/en/esbonio-language-server-v0.16.5/
Source Code = https://github.com/swyddfa/esbonio
license = MIT
classifiers =
Expand Down

0 comments on commit f41c261

Please sign in to comment.