From e395142e599aa78b4a7ec80dcc3f8ccf279f97b1 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 29 Nov 2021 16:45:22 -0800 Subject: [PATCH] version bump --- CHANGELOG | 3 +++ jc/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) 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.',