Skip to content

Commit

Permalink
Esbonio Language Server Release v0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 20, 2022
1 parent 2f1b559 commit 4a6c911
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 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.10.0
current_version = 0.10.1
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
9 changes: 9 additions & 0 deletions lib/esbonio/CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
v0.10.1 - 2022-03-20
--------------------

Fixes
^^^^^

- The language server should now correctly handle ``buildDir``, ``confDir`` and ``srcDir`` config values containing paths relative to ``~`` (`#342 <https://github.com/swyddfa/esbonio/issues/342>`_)


v0.10.0 - 2022-03-17
--------------------

Expand Down
1 change: 0 additions & 1 deletion lib/esbonio/changes/342.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 @@ -46,7 +46,7 @@
from .rst import RstLanguageServer
from .rst import SymbolVisitor

__version__ = "0.10.0"
__version__ = "0.10.1"

__all__ = [
"LanguageFeature",
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.0
version = 0.10.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 4a6c911

Please sign in to comment.