diff --git a/CHANGELOG b/CHANGELOG index 06ae27f2..1b0c2c21 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,9 @@ jc changelog +xxxxxxxx v1.21.1 +- Fix IP Address string parser for older python versions that don't cleanly + accept decimal input format (e.g. python 3.6) + 20220821 v1.21.0 - Add IP Address string parser - Add Syslog standard and streaming string parsers (RFC 3164 and RFC 5424) diff --git a/docs/parsers/ip_address.md b/docs/parsers/ip_address.md index aa664e73..909f17bd 100644 --- a/docs/parsers/ip_address.md +++ b/docs/parsers/ip_address.md @@ -487,4 +487,4 @@ Returns: ### Parser Information Compatibility: linux, darwin, cygwin, win32, aix, freebsd -Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/jc/lib.py b/jc/lib.py index 9356323d..b4698536 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -6,7 +6,7 @@ import importlib from typing import Dict, List, Iterable, Union, Iterator from jc import appdirs -__version__ = '1.21.0' +__version__ = '1.21.1' parsers = [ 'acpi', diff --git a/man/jc.1 b/man/jc.1 index 8febd814..7b3d3da3 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2022-08-24 1.21.0 "JSON Convert" +.TH jc 1 2022-08-28 1.21.1 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools and file-types .SH SYNOPSIS diff --git a/setup.py b/setup.py index d92354ab..8634cf8a 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('README.md', 'r') as f: setuptools.setup( name='jc', - version='1.21.0', + version='1.21.1', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Converts the output of popular command-line tools and file-types to JSON.',