Skip to content

Commit

Permalink
Esbonio Language Server Release v0.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 9, 2022
1 parent fcf90f4 commit 37dc99c
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.11.1
current_version = 0.11.2
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(.dev(?P<dev>\d+))?
Expand Down
16 changes: 16 additions & 0 deletions lib/esbonio/CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
v0.11.2 - 2022-05-09
--------------------

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

- Add ``esbonio.lsp.rst._record`` and ``esbonio.lsp.sphinx._record`` startup modules.
These can be used to record all LSP client-sever communication to a text file. (`#380 <https://github.com/swyddfa/esbonio/issues/380>`_)


Fixes
^^^^^

- The language server now detects functionality bundled with standard Sphinx extensions (`#381 <https://github.com/swyddfa/esbonio/issues/381>`_)


v0.11.1 - 2022-04-26
--------------------

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

This file was deleted.

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

__version__ = "0.11.1"
__version__ = "0.11.2"

__all__ = [
"CompletionContext",
Expand Down
4 changes: 2 additions & 2 deletions lib/esbonio/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = esbonio
version = 0.11.1
version = 0.11.2
description = A Language Server for Sphinx projects.
long_description = file:README.md
long_description_content_type = text/markdown
Expand Down Expand Up @@ -33,7 +33,7 @@ include_package_data = True
install_requires =
appdirs
sphinx
pygls>=0.11.1,<0.12.0
pygls>=0.11.2,<0.12.0
pyspellchecker
typing-extensions

Expand Down

0 comments on commit 37dc99c

Please sign in to comment.