Skip to content

Commit

Permalink
Esbonio Language Server Release v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 17, 2022
1 parent 36c6bfb commit 07ce2c7
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 12 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.9.0
current_version = 0.10.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
21 changes: 21 additions & 0 deletions lib/esbonio/CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
v0.10.0 - 2022-03-17
--------------------

Features
^^^^^^^^

- The server now provides an `esbonio.server.preview` command that can be used to preview HTML Sphinx projects via a local HTTP server. (`#275 <https://github.com/swyddfa/esbonio/issues/275>`_)
- The language server now accepts paths relative to ``${workspaceFolder}`` for Sphinx's ``confDir``, ``srcDir`` and ``builDir`` options. (`#304 <https://github.com/swyddfa/esbonio/issues/304>`_)
- The language server now supports ``textDocument/definition`` requests for ``.. image::`` directive arguments. (`#318 <https://github.com/swyddfa/esbonio/issues/318>`_)
- The language server now supports ``textDocument/definition`` requests for ``.. figure::`` directive arguments. (`#319 <https://github.com/swyddfa/esbonio/issues/319>`_)
- The language server will now look in sphinx extension modules and ``conf.py`` files for extensions to the language server. (`#331 <https://github.com/swyddfa/esbonio/issues/331>`_)


Fixes
^^^^^

- The language server no longer crashes when asked to ``--exclude`` a module that would not be loaded anyway. (`#313 <https://github.com/swyddfa/esbonio/issues/313>`_)
- Completion suggestions for domain objects referenced by roles such as ``:doc:``, ``:ref:``, ``:func:`` and many more now correctly update each time a rebuild is triggered. (`#317 <https://github.com/swyddfa/esbonio/issues/317>`_)
- Goto definition on a directive's arguments is no longer foiled by trailing whitespace. (`#327 <https://github.com/swyddfa/esbonio/issues/327>`_)


v0.9.0 - 2022-03-07
-------------------

Expand Down
1 change: 0 additions & 1 deletion lib/esbonio/changes/275.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion lib/esbonio/changes/304.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion lib/esbonio/changes/313.fix.rst

This file was deleted.

1 change: 0 additions & 1 deletion lib/esbonio/changes/317.fix.rst

This file was deleted.

1 change: 0 additions & 1 deletion lib/esbonio/changes/318.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion lib/esbonio/changes/319.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion lib/esbonio/changes/327.fix.rst

This file was deleted.

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

__version__ = "0.9.0"
__version__ = "0.10.0"

__all__ = [
"LanguageFeature",
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.9.0
version = 0.10.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 07ce2c7

Please sign in to comment.