Skip to content

Commit

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

Features
^^^^^^^^

- Add ``textDocument/documentLink`` support.

The server supports resolving links for role targets with initial support for intersphinx references and local ``:doc:`` references.

The server also supports resolving links for directive arguments with initial support for ``.. image::``, ``.. figure::``, ``.. include::`` and ``.. literalinclude::`` directives. (`#294 <https://github.com/swyddfa/esbonio/issues/294>`_)


Fixes
^^^^^

- Goto definition for ``:ref:`` targets now works for labels containing ``-`` characters (`#357 <https://github.com/swyddfa/esbonio/issues/357>`_)
- Goto definition for ``:doc:`` targets will now only return a result if the referenced document actually exists. (`#369 <https://github.com/swyddfa/esbonio/issues/369>`_)


v0.10.3 - 2022-04-07
--------------------

Expand Down
5 changes: 0 additions & 5 deletions lib/esbonio/changes/294.feature.rst

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion lib/esbonio/changes/369.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.10.3"
__version__ = "0.11.0"

__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.10.3
version = 0.11.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 e703a77

Please sign in to comment.