Skip to content

Commit

Permalink
Esbonio Language Server Release v0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jun 5, 2021
1 parent be1c2fd commit 8d5c437
Show file tree
Hide file tree
Showing 11 changed files with 35 additions and 22 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.1
current_version = 0.6.2
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
31 changes: 31 additions & 0 deletions lib/esbonio/CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
v0.6.2 - 2021-06-05
-------------------

Fixes
^^^^^

- The language server now correctly handles windows file URIs when determining Sphinx's
build directory. (`#184 <https://github.com/swyddfa/esbonio/issues/184>`_)
- Role and role target completions are now correctly generated when the role
is being typed within parenthesis e.g. ``(:kbd:...`` (`#191 <https://github.com/swyddfa/esbonio/issues/191>`_)
- Path variables like ``${confDir}`` and ``${workspaceRoot}`` are now properly expanded
even when there are no additional path elements. (`#208 <https://github.com/swyddfa/esbonio/issues/208>`_)


Misc
^^^^

- The cli arguments ``--cache-dir``, ``--log-filter``, ``--log-level`` and
``--hide-sphinx-output`` have been replaced with the configuration
parameters ``esbonio.sphinx.buildDir``, ``esbonio.server.logFilter``,
``esbonio.logLevel`` and ``esbonio.server.hideSphinxOutput`` respectively (`#185 <https://github.com/swyddfa/esbonio/issues/185>`_)
- The language server's startup sequence has been reworked. Language clients are now
required to provide configuration parameters under the ``initializationOptions`` field
in the ``initialize`` request. (`#192 <https://github.com/swyddfa/esbonio/issues/192>`_)
- The language server will now send an `esbonio/buildComplete` notification to
clients when it has finished (re)building the docs. (`#193 <https://github.com/swyddfa/esbonio/issues/193>`_)
- An entry for ``esbonio`` has been added to the ``console_scripts``
entry point, so it's now possible to launch the language server by
calling ``esbonio`` directly (`#195 <https://github.com/swyddfa/esbonio/issues/195>`_)


v0.6.1 - 2021-05-13
-------------------

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

This file was deleted.

4 changes: 0 additions & 4 deletions lib/esbonio/changes/185.misc.rst

This file was deleted.

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

This file was deleted.

3 changes: 0 additions & 3 deletions lib/esbonio/changes/192.misc.rst

This file was deleted.

2 changes: 0 additions & 2 deletions lib/esbonio/changes/193.misc.rst

This file was deleted.

3 changes: 0 additions & 3 deletions lib/esbonio/changes/195.misc.rst

This file was deleted.

2 changes: 0 additions & 2 deletions lib/esbonio/changes/208.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 @@ -32,7 +32,7 @@
from esbonio.lsp.logger import LogFilter
from esbonio.lsp.logger import LspHandler

__version__ = "0.6.1"
__version__ = "0.6.2"


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

0 comments on commit 8d5c437

Please sign in to comment.