diff --git a/CHANGELOG b/CHANGELOG index 70348fc0..82e2fb4c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,9 @@ jc changelog +20230121 v1.23.0 +- Add ssh_conf file parser +- Add input slicing + 20230111 v1.22.5 - Add TOML file parser - Add INI with duplicate key support file parser diff --git a/jc/lib.py b/jc/lib.py index 55978c14..6333b81c 100644 --- a/jc/lib.py +++ b/jc/lib.py @@ -9,7 +9,7 @@ from .jc_types import ParserInfoType, JSONDictType from jc import appdirs -__version__ = '1.22.5' +__version__ = '1.23.0' parsers: List[str] = [ 'acpi', diff --git a/setup.py b/setup.py index 8d59c8d4..3485138c 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('README.md', 'r') as f: setuptools.setup( name='jc', - version='1.22.5', + version='1.23.0', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Converts the output of popular command-line tools and file-types to JSON.',