Skip to content

Commit

Permalink
Esbonio Language Server Release v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 7, 2021
1 parent 0d84e5c commit 4962052
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 15 deletions.
4 changes: 2 additions & 2 deletions lib/esbonio/.bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[bumpversion]
current_version = 0.5.1
current_version = 0.6.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(.dev(?P<dev>\d+))?
serialize =
serialize =
{major}.{minor}.{patch}.dev{dev}
{major}.{minor}.{patch}

Expand Down
29 changes: 29 additions & 0 deletions lib/esbonio/CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
v0.6.0 - 2021-05-07v0.6.0 - 2021-05-07
-------------------

Features
^^^^^^^^

- The Language Server will now offer filepath completions for the ``image``,
``figure``, ``include`` and ``literalinclude`` directives as well as the
``download`` role. (`#34 <https://github.com/swyddfa/esbonio/issues/34>`_)
- Language clients can now override the default ``conf.py`` discovery mechanism
by providing a ``esbonio.sphinx.confDir`` config option. (`#62 <https://github.com/swyddfa/esbonio/issues/62>`_)
- Language clients can now override the assumption that Sphinx's ``srcdir``
is the same as its ``confdir`` by providing a ``esbonio.sphinx.srcDir``
config option. (`#142 <https://github.com/swyddfa/esbonio/issues/142>`_)


Fixes
^^^^^

- The Language Server no longer throws an exception while handling errors raised
during initialization of a Sphinx application. (`#139 <https://github.com/swyddfa/esbonio/issues/139>`_)


Misc
^^^^

- Upgrage pygls to v0.10.x (`#144 <https://github.com/swyddfa/esbonio/issues/144>`_)


v0.5.1 - 2021-04-20
-------------------

Expand Down
2 changes: 0 additions & 2 deletions lib/esbonio/changes/139.fix.rst

This file was deleted.

3 changes: 0 additions & 3 deletions lib/esbonio/changes/142.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion lib/esbonio/changes/144.misc.rst

This file was deleted.

3 changes: 0 additions & 3 deletions lib/esbonio/changes/34.feature.rst

This file was deleted.

2 changes: 0 additions & 2 deletions lib/esbonio/changes/62.feature.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 @@ -30,7 +30,7 @@
from pygls.workspace import Document
from sphinx.application import Sphinx

__version__ = "0.5.1"
__version__ = "0.6.0"


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

0 comments on commit 4962052

Please sign in to comment.