diff --git a/CHANGELOG b/CHANGELOG index f5368223..c566cb50 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,8 @@ jc changelog +20210420 v1.15.3 +- Add ufw status command parser tested on linux + 20210418 v1.15.2 - Add systeminfo parser tested on Windows - Update dig parser to fix an issue with IPv6 addresses in the server field diff --git a/jc/__init__.py b/jc/__init__.py index 3b6efae6..42fad9c8 100644 --- a/jc/__init__.py +++ b/jc/__init__.py @@ -62,12 +62,12 @@ Module Example: ... ;; Got answer: ... ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 64612 ... ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 - ... + ... ... ;; OPT PSEUDOSECTION: ... ; EDNS: version: 0, flags:; udp: 4096 ... ;; QUESTION SECTION: ... ;example.com. IN A - ... + ... ... ;; ANSWER SECTION: ... example.com. 29658 IN A 93.184.216.34 ... @@ -86,4 +86,4 @@ Module Example: """ name = 'jc' -__version__ = '1.15.2' +__version__ = '1.15.3' diff --git a/jc/cli.py b/jc/cli.py index 08ad7d38..23c10b07 100644 --- a/jc/cli.py +++ b/jc/cli.py @@ -102,6 +102,7 @@ parsers = [ 'timedatectl', 'tracepath', 'traceroute', + 'ufw', 'uname', 'upower', 'uptime', diff --git a/setup.py b/setup.py index 96a983ba..4deef0b3 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.2', + version='1.15.3', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Converts the output of popular command-line tools and file-types to JSON.',