diff --git a/CHANGELOG b/CHANGELOG index 9f30bcf8..0fb92fef 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,8 @@ jc changelog +20210520 v1.15.5 +- Fix issue where help and about information would not display if a 3rd party parser library was missing. (e.g. xmltodict) + 20210517 v1.15.4 - Update ping parser to support error responses in OSX and BSD - Update ping parser to be more resilient against parsing errors for unknown error types diff --git a/jc/__init__.py b/jc/__init__.py index 0c8ac89a..6e6938ff 100644 --- a/jc/__init__.py +++ b/jc/__init__.py @@ -86,4 +86,4 @@ Module Example: """ name = 'jc' -__version__ = '1.15.4' +__version__ = '1.15.5' diff --git a/setup.py b/setup.py index 6dd19f30..325f8141 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('README.md', 'r') as f: setuptools.setup( name='jc', - version='1.15.4', + version='1.15.5', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Converts the output of popular command-line tools and file-types to JSON.',