diff --git a/HISTORY.rst b/HISTORY.rst index c9326e0..25d7f24 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,11 @@ History ======= +0.2.5 (2019-06-12) +------------------ + +* Fix whitespace issues with back to back tags + 0.2.4 (2019-06-11) ------------------ diff --git a/docdown/__init__.py b/docdown/__init__.py index 6b1281d..25ecc88 100644 --- a/docdown/__init__.py +++ b/docdown/__init__.py @@ -2,4 +2,4 @@ __author__ = """Jason Emerick""" __email__ = 'jason@mobelux.com' -__version__ = '0.2.4' +__version__ = '0.2.5' diff --git a/setup.cfg b/setup.cfg index aeeb061..ae465d8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.4 +current_version = 0.2.5 commit = True tag = True diff --git a/setup.py b/setup.py index 2e725c1..71350e6 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( name='docdown', - version='0.2.4', + version='0.2.5', description="DocDown is a Markdown extension for source code documentation.", long_description=readme + '\n\n' + history, author="Jason Emerick, Justin Michalicek",