diff --git a/lib/esbonio/.bumpversion.cfg b/lib/esbonio/.bumpversion.cfg index 5f4bcb174..021628f7d 100644 --- a/lib/esbonio/.bumpversion.cfg +++ b/lib/esbonio/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.3 +current_version = 0.11.0 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(.dev(?P\d+))? diff --git a/lib/esbonio/CHANGES.rst b/lib/esbonio/CHANGES.rst index adde0cd5c..64d12cbf9 100644 --- a/lib/esbonio/CHANGES.rst +++ b/lib/esbonio/CHANGES.rst @@ -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 `_) + + +Fixes +^^^^^ + +- Goto definition for ``:ref:`` targets now works for labels containing ``-`` characters (`#357 `_) +- Goto definition for ``:doc:`` targets will now only return a result if the referenced document actually exists. (`#369 `_) + + v0.10.3 - 2022-04-07 -------------------- diff --git a/lib/esbonio/changes/294.feature.rst b/lib/esbonio/changes/294.feature.rst deleted file mode 100644 index d7dbd2ca6..000000000 --- a/lib/esbonio/changes/294.feature.rst +++ /dev/null @@ -1,5 +0,0 @@ -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. diff --git a/lib/esbonio/changes/357.fix.rst b/lib/esbonio/changes/357.fix.rst deleted file mode 100644 index 19ff26031..000000000 --- a/lib/esbonio/changes/357.fix.rst +++ /dev/null @@ -1 +0,0 @@ -Goto definition for ``:ref:`` targets now works for labels containing ``-`` characters diff --git a/lib/esbonio/changes/369.fix.rst b/lib/esbonio/changes/369.fix.rst deleted file mode 100644 index ad846f780..000000000 --- a/lib/esbonio/changes/369.fix.rst +++ /dev/null @@ -1 +0,0 @@ -Goto definition for ``:doc:`` targets will now only return a result if the referenced document actually exists. diff --git a/lib/esbonio/esbonio/lsp/__init__.py b/lib/esbonio/esbonio/lsp/__init__.py index 11260dccd..e2fc431ea 100644 --- a/lib/esbonio/esbonio/lsp/__init__.py +++ b/lib/esbonio/esbonio/lsp/__init__.py @@ -49,7 +49,7 @@ from .rst import RstLanguageServer from .rst import SymbolVisitor -__version__ = "0.10.3" +__version__ = "0.11.0" __all__ = [ "CompletionContext", diff --git a/lib/esbonio/setup.cfg b/lib/esbonio/setup.cfg index 555634bcd..79a929cc9 100644 --- a/lib/esbonio/setup.cfg +++ b/lib/esbonio/setup.cfg @@ -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