From 22aee1bfa40ed1d3c4df28cd934ef0edfc5c458c Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 22 Jun 2020 11:23:15 -0700 Subject: [PATCH] version bump --- changelog.txt | 3 +++ jc/cli.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/changelog.txt b/changelog.txt index 41302bb0..bc52a9db 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,8 @@ jc changelog +20200622 v1.11.7 +- Fix iptables parser issue which would not output the last chain + 20200614 v1.11.6 - Improve and standardize empty data check for all parsers diff --git a/jc/cli.py b/jc/cli.py index 04da8a82..1bc5ce88 100644 --- a/jc/cli.py +++ b/jc/cli.py @@ -21,7 +21,7 @@ import jc.appdirs as appdirs class info(): - version = '1.11.6' + version = '1.11.7' description = 'jc cli output JSON conversion tool' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' diff --git a/setup.py b/setup.py index be13322a..e162795c 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('README.md', 'r') as f: setuptools.setup( name='jc', - version='1.11.6', + version='1.11.7', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Converts the output of popular command-line tools and file-types to JSON.',