diff --git a/CHANGELOG b/CHANGELOG index f6020246..523c1462 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,6 @@ jc changelog -xxxxxxxx v1.20.5 +xxxxxxxx v1.21.0 - Add IP Address string parser - Add Syslog string parsers (RFC 3164 and RFC 5424) - Add CEF string parser diff --git a/jc/lib.py b/jc/lib.py index 0c8f217e..e88613cf 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.20.5' +__version__ = '1.21.0' parsers = [ 'acpi', diff --git a/man/jc.1 b/man/jc.1 index 312dc9e0..9d0984ca 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2022-08-12 1.20.5 "JSON Convert" +.TH jc 1 2022-08-12 1.21.0 "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 5f39bc3c..d92354ab 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('README.md', 'r') as f: setuptools.setup( name='jc', - version='1.20.5', + version='1.21.0', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Converts the output of popular command-line tools and file-types to JSON.',