Skip to content

Commit

Permalink
Esbonio Language Server Release v0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 13, 2021
1 parent d11d5b9 commit 84e2d86
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 14 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.6.0
current_version = 0.6.1
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(.dev(?P<dev>\d+))?
Expand Down
19 changes: 19 additions & 0 deletions lib/esbonio/CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
v0.6.1 - 2021-05-13
-------------------

Fixes
^^^^^

- Intersphinx projects are now only included as completion suggestions for roles
which target object types in a project's inventory. (`#158 <https://github.com/swyddfa/esbonio/issues/158>`_)
- Fix the uri representation of Windows paths when reporting diagnostics (`#166 <https://github.com/swyddfa/esbonio/issues/166>`_)
- The language server now attempts to recreate the Sphinx application if the user
updates a broken ``conf.py``. (`#169 <https://github.com/swyddfa/esbonio/issues/169>`_)
- The language server no longer crashes if clients don't send the ``esbonio.sphinx``
configuration object (`#171 <https://github.com/swyddfa/esbonio/issues/171>`_)
- Docstrings from Sphinx and Docutils' base directive classes are no longer
included in completion suggestions as they are not useful. (`#178 <https://github.com/swyddfa/esbonio/issues/178>`_)
- Sphinx build time exceptions are now caught and reported (`#179 <https://github.com/swyddfa/esbonio/issues/179>`_)
- Fix ``Method not found: $/setTrace`` exceptions when running against VSCode (`#180 <https://github.com/swyddfa/esbonio/issues/180>`_)


v0.6.0 - 2021-05-07
-------------------

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

This file was deleted.

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

This file was deleted.

2 changes: 0 additions & 2 deletions lib/esbonio/changes/169.fix.rst

This file was deleted.

2 changes: 0 additions & 2 deletions lib/esbonio/changes/171.fix.rst

This file was deleted.

2 changes: 0 additions & 2 deletions lib/esbonio/changes/178.fix.rst

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion lib/esbonio/changes/180.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 @@ -31,7 +31,7 @@
from pygls.workspace import Document
from sphinx.application import Sphinx

__version__ = "0.6.0"
__version__ = "0.6.1"


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

0 comments on commit 84e2d86

Please sign in to comment.