1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00

version bump to v1.15.3

This commit is contained in:
Kelly Brazil
2021-04-20 13:39:12 -07:00
parent 9747ca414d
commit b5145d6c14
4 changed files with 8 additions and 4 deletions

View File

@ -1,5 +1,8 @@
jc changelog jc changelog
20210420 v1.15.3
- Add ufw status command parser tested on linux
20210418 v1.15.2 20210418 v1.15.2
- Add systeminfo parser tested on Windows - Add systeminfo parser tested on Windows
- Update dig parser to fix an issue with IPv6 addresses in the server field - Update dig parser to fix an issue with IPv6 addresses in the server field

View File

@ -62,12 +62,12 @@ Module Example:
... ;; Got answer: ... ;; Got answer:
... ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 64612 ... ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 64612
... ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ... ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1
... ...
... ;; OPT PSEUDOSECTION: ... ;; OPT PSEUDOSECTION:
... ; EDNS: version: 0, flags:; udp: 4096 ... ; EDNS: version: 0, flags:; udp: 4096
... ;; QUESTION SECTION: ... ;; QUESTION SECTION:
... ;example.com. IN A ... ;example.com. IN A
... ...
... ;; ANSWER SECTION: ... ;; ANSWER SECTION:
... example.com. 29658 IN A 93.184.216.34 ... example.com. 29658 IN A 93.184.216.34
... ...
@ -86,4 +86,4 @@ Module Example:
""" """
name = 'jc' name = 'jc'
__version__ = '1.15.2' __version__ = '1.15.3'

View File

@ -102,6 +102,7 @@ parsers = [
'timedatectl', 'timedatectl',
'tracepath', 'tracepath',
'traceroute', 'traceroute',
'ufw',
'uname', 'uname',
'upower', 'upower',
'uptime', 'uptime',

View File

@ -5,7 +5,7 @@ with open('README.md', 'r') as f:
setuptools.setup( setuptools.setup(
name='jc', name='jc',
version='1.15.2', version='1.15.3',
author='Kelly Brazil', author='Kelly Brazil',
author_email='kellyjonbrazil@gmail.com', author_email='kellyjonbrazil@gmail.com',
description='Converts the output of popular command-line tools and file-types to JSON.', description='Converts the output of popular command-line tools and file-types to JSON.',