diff --git a/CHANGELOG b/CHANGELOG index 4ec0e106..4c387050 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,8 @@ jc changelog +20211129 v1.17.3 +- Update parsers to exit with error if non-string input is detected (raise TypeError) + 20211117 v1.17.2 - Fix ping parser to add Alpine linux support - Fix netstat parser for older versions of netstat on linux diff --git a/jc/__init__.py b/jc/__init__.py index e4c2b5bd..c7a39794 100644 --- a/jc/__init__.py +++ b/jc/__init__.py @@ -73,4 +73,4 @@ Module Example: """ name = 'jc' -__version__ = '1.17.2' +__version__ = '1.17.3' diff --git a/setup.py b/setup.py index 67bf22f4..c9ed7588 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('README.md', 'r') as f: setuptools.setup( name='jc', - version='1.17.2', + version='1.17.3', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Converts the output of popular command-line tools and file-types to JSON.',