diff --git a/lib/esbonio/.bumpversion.cfg b/lib/esbonio/.bumpversion.cfg index 333e743d9..15fd3982b 100644 --- a/lib/esbonio/.bumpversion.cfg +++ b/lib/esbonio/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0 +current_version = 0.2.1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(.dev(?P\d+))? diff --git a/lib/esbonio/CHANGES.rst b/lib/esbonio/CHANGES.rst index eb3b332fd..8195afb16 100644 --- a/lib/esbonio/CHANGES.rst +++ b/lib/esbonio/CHANGES.rst @@ -1,3 +1,13 @@ +v0.2.1 - 2020-12-08 +------------------- + +Fixes +^^^^^ + +- **Language Server** Directives that are part of the ``std`` or ``py`` Sphinx domains + will now be included in completion suggestions (`#31 `_) + + v0.2.0 - 2020-12-06 ------------------- diff --git a/lib/esbonio/changes/31.fix.rst b/lib/esbonio/changes/31.fix.rst deleted file mode 100644 index 0a1b90cc3..000000000 --- a/lib/esbonio/changes/31.fix.rst +++ /dev/null @@ -1,2 +0,0 @@ -**Language Server** Directives that are part of the ``std`` or ``py`` Sphinx domains -will now be included in completion suggestions \ No newline at end of file diff --git a/lib/esbonio/esbonio/_version.py b/lib/esbonio/esbonio/_version.py index d3ec452c3..3ced3581b 100644 --- a/lib/esbonio/esbonio/_version.py +++ b/lib/esbonio/esbonio/_version.py @@ -1 +1 @@ -__version__ = "0.2.0" +__version__ = "0.2.1"