diff --git a/lib/esbonio/.bumpversion.cfg b/lib/esbonio/.bumpversion.cfg index 194c1612c..84cbef74a 100644 --- a/lib/esbonio/.bumpversion.cfg +++ b/lib/esbonio/.bumpversion.cfg @@ -1,9 +1,9 @@ [bumpversion] -current_version = 0.6.1 +current_version = 0.6.2 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 dfbfff16b..b4934358f 100644 --- a/lib/esbonio/CHANGES.rst +++ b/lib/esbonio/CHANGES.rst @@ -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 `_) +- Role and role target completions are now correctly generated when the role + is being typed within parenthesis e.g. ``(:kbd:...`` (`#191 `_) +- Path variables like ``${confDir}`` and ``${workspaceRoot}`` are now properly expanded + even when there are no additional path elements. (`#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 `_) +- 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 `_) +- The language server will now send an `esbonio/buildComplete` notification to + clients when it has finished (re)building the docs. (`#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 `_) + + v0.6.1 - 2021-05-13 ------------------- diff --git a/lib/esbonio/changes/184.fix.rst b/lib/esbonio/changes/184.fix.rst deleted file mode 100644 index 76a33db80..000000000 --- a/lib/esbonio/changes/184.fix.rst +++ /dev/null @@ -1,2 +0,0 @@ -The language server now correctly handles windows file URIs when determining Sphinx's -build directory. diff --git a/lib/esbonio/changes/185.misc.rst b/lib/esbonio/changes/185.misc.rst deleted file mode 100644 index f03f6e224..000000000 --- a/lib/esbonio/changes/185.misc.rst +++ /dev/null @@ -1,4 +0,0 @@ -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 diff --git a/lib/esbonio/changes/191.fix.rst b/lib/esbonio/changes/191.fix.rst deleted file mode 100644 index ba1972f8b..000000000 --- a/lib/esbonio/changes/191.fix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Role and role target completions are now correctly generated when the role -is being typed within parenthesis e.g. ``(:kbd:...`` diff --git a/lib/esbonio/changes/192.misc.rst b/lib/esbonio/changes/192.misc.rst deleted file mode 100644 index a2b42d95d..000000000 --- a/lib/esbonio/changes/192.misc.rst +++ /dev/null @@ -1,3 +0,0 @@ -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. diff --git a/lib/esbonio/changes/193.misc.rst b/lib/esbonio/changes/193.misc.rst deleted file mode 100644 index 29356f552..000000000 --- a/lib/esbonio/changes/193.misc.rst +++ /dev/null @@ -1,2 +0,0 @@ -The language server will now send an `esbonio/buildComplete` notification to -clients when it has finished (re)building the docs. diff --git a/lib/esbonio/changes/195.misc.rst b/lib/esbonio/changes/195.misc.rst deleted file mode 100644 index 431e46229..000000000 --- a/lib/esbonio/changes/195.misc.rst +++ /dev/null @@ -1,3 +0,0 @@ -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 diff --git a/lib/esbonio/changes/208.fix.rst b/lib/esbonio/changes/208.fix.rst deleted file mode 100644 index a2206ded0..000000000 --- a/lib/esbonio/changes/208.fix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Path variables like ``${confDir}`` and ``${workspaceRoot}`` are now properly expanded -even when there are no additional path elements. diff --git a/lib/esbonio/esbonio/lsp/__init__.py b/lib/esbonio/esbonio/lsp/__init__.py index 5a1eb57b7..caab1269b 100644 --- a/lib/esbonio/esbonio/lsp/__init__.py +++ b/lib/esbonio/esbonio/lsp/__init__.py @@ -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 = [ diff --git a/lib/esbonio/setup.cfg b/lib/esbonio/setup.cfg index 34ea95291..1cd022387 100644 --- a/lib/esbonio/setup.cfg +++ b/lib/esbonio/setup.cfg @@ -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