1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-13 01:20:24 +02:00

version bump

This commit is contained in:
Kelly Brazil
2023-01-21 10:56:45 -08:00
parent 07f716b254
commit 4d7a872670
3 changed files with 6 additions and 2 deletions

View File

@ -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

View File

@ -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',

View File

@ -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.',