diff --git a/docs/changelog.rst b/docs/changelog.rst index e282c93c..b3e20130 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,9 @@ Change log ********** +0.5.2 +##### + * Fix formatting of empty-string default values. Patch by Adam Turner. diff --git a/docs/conf.py b/docs/conf.py index 73c6a325..a0632b60 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -10,7 +10,7 @@ project = 'sphinx-argparse' copyright = '2017, Alex Rudakov, Devon Ryan, and contributors' -release = version = '0.5.1' +release = version = '0.5.2' nitpicky = True # -- Options for intersphinx --------------------------------------------------- diff --git a/sphinxarg/__init__.py b/sphinxarg/__init__.py index d85d5a2d..ff85cd6d 100644 --- a/sphinxarg/__init__.py +++ b/sphinxarg/__init__.py @@ -1,2 +1,2 @@ -__version__ = '0.5.1' -version_info = (0, 5, 1) +__version__ = '0.5.2' +version_info = (0, 5, 2)