diff --git a/lib/esbonio/.bumpversion.cfg b/lib/esbonio/.bumpversion.cfg index b156ffbc..78f8fe5a 100644 --- a/lib/esbonio/.bumpversion.cfg +++ b/lib/esbonio/.bumpversion.cfg @@ -1,9 +1,9 @@ [bumpversion] -current_version = 0.10.0 +current_version = 0.10.1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(.dev(?P\d+))? -serialize = +serialize = {major}.{minor}.{patch}.dev{dev} {major}.{minor}.{patch} diff --git a/lib/esbonio/CHANGES.rst b/lib/esbonio/CHANGES.rst index 0674dbd1..e15368dd 100644 --- a/lib/esbonio/CHANGES.rst +++ b/lib/esbonio/CHANGES.rst @@ -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 `_) + + v0.10.0 - 2022-03-17 -------------------- diff --git a/lib/esbonio/changes/342.fix.rst b/lib/esbonio/changes/342.fix.rst deleted file mode 100644 index 1fad001d..00000000 --- a/lib/esbonio/changes/342.fix.rst +++ /dev/null @@ -1 +0,0 @@ -The language server should now correctly handle ``buildDir``, ``confDir`` and ``srcDir`` config values containing paths relative to ``~`` diff --git a/lib/esbonio/esbonio/lsp/__init__.py b/lib/esbonio/esbonio/lsp/__init__.py index ef1987ee..3d31d3d2 100644 --- a/lib/esbonio/esbonio/lsp/__init__.py +++ b/lib/esbonio/esbonio/lsp/__init__.py @@ -46,7 +46,7 @@ from .rst import RstLanguageServer from .rst import SymbolVisitor -__version__ = "0.10.0" +__version__ = "0.10.1" __all__ = [ "LanguageFeature", diff --git a/lib/esbonio/setup.cfg b/lib/esbonio/setup.cfg index 58ec87e8..366f9895 100644 --- a/lib/esbonio/setup.cfg +++ b/lib/esbonio/setup.cfg @@ -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