diff --git a/CHANGELOG b/CHANGELOG index 6d65e74b..7ccd884c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,9 @@ jc changelog +20220705 v1.20.3 +- Add pager functionality to help (parser documentation only) +- Add m3u/m3u8 file parser + 20220705 v1.20.2 - Add `gpg --with-colons` parser tested on linux - Add DER and PEM encoded X.509 Certificate parser diff --git a/jc/lib.py b/jc/lib.py index 6fe0243c..4f57c5a0 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.2' +__version__ = '1.20.3' parsers = [ 'acpi', diff --git a/setup.py b/setup.py index beada190..5f989efb 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.2', + version='1.20.3', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Converts the output of popular command-line tools and file-types to JSON.',