Skip to content

Commit

Permalink
Esbonio Language Server Release v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 13, 2021
1 parent a0b0b31 commit 6b8a652
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 11 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.6.2
current_version = 0.7.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
25 changes: 25 additions & 0 deletions lib/esbonio/CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
v0.7.0 - 2021-09-13
-------------------

Features
^^^^^^^^

- Add initial goto definition support.
Currently only support definitions for ``:ref:`` and ``:doc:`` role targets. (`#209 <https://github.com/swyddfa/esbonio/issues/209>`_)


Fixes
^^^^^

- Completion suggestions for ``:option:`` targets now insert text in the correct format (``<progname> <option>``) (`#212 <https://github.com/swyddfa/esbonio/issues/212>`_)
- Diagnostics are now correctly cleared on Windows (`#213 <https://github.com/swyddfa/esbonio/issues/213>`_)
- Completion suggestions are no longer given in the middle of Python code. (`#215 <https://github.com/swyddfa/esbonio/issues/215>`_)
- ``CompletionItems`` should no longer corrupt existing text when selected. (`#223 <https://github.com/swyddfa/esbonio/issues/223>`_)


Misc
^^^^

- Updated ``pygls`` to ``v0.11.0`` (`#218 <https://github.com/swyddfa/esbonio/issues/218>`_)


v0.6.2 - 2021-06-05
-------------------

Expand Down
2 changes: 0 additions & 2 deletions lib/esbonio/changes/209.feature.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion lib/esbonio/changes/223.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 @@ -28,7 +28,7 @@
from .rst import RstLanguageServer
from .sphinx import SphinxLanguageServer

__version__ = "0.6.2"
__version__ = "0.7.0"

__all__ = [
"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.6.2
version = 0.7.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 6b8a652

Please sign in to comment.