Skip to content

Commit

Permalink
Esbonio Language Server Release v0.16.4
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jan 11, 2024
1 parent 3e7a536 commit 69b3f45
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 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.3
current_version = 0.16.4
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(.dev(?P<dev>\d+))?
Expand Down
10 changes: 10 additions & 0 deletions lib/esbonio/CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
v0.16.4 - 2024-01-11
--------------------

Fixes
^^^^^

- Fix ``ValueError`` thrown when the server is given invalid ``Position`` data.
Invalid values will be clamped to the range permitted by the language server protocol (``[0, 2147483647]``) (`#714 <https://github.com/swyddfa/esbonio/issues/714>`_)


v0.16.3 - 2023-11-27
--------------------

Expand Down
2 changes: 0 additions & 2 deletions lib/esbonio/changes/714.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 @@ -58,7 +58,7 @@
from .rst import RstLanguageServer
from .symbols import SymbolVisitor

__version__ = "0.16.3"
__version__ = "0.16.4"

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

0 comments on commit 69b3f45

Please sign in to comment.