1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00

version bump

This commit is contained in:
Kelly Brazil
2023-01-03 11:53:57 -08:00
parent 5d639db5a8
commit ae6248227b
4 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,9 @@
jc changelog
20230103 v1.22.5
- Update copyright dates
- Fix INI parser to include top-level values with no section header
20221230 v1.22.4
- Add `iwconfig` command parser
- Add NeXTSTEP format support to the PLIST file parser

View File

@ -48,7 +48,7 @@ class info():
author: str = 'Kelly Brazil'
author_email: str = 'kellyjonbrazil@gmail.com'
website: str = 'https://github.com/kellyjonbrazil/jc'
copyright: str = '© 2019-2022 Kelly Brazil'
copyright: str = '© 2019-2023 Kelly Brazil'
license: str = 'MIT License'

View File

@ -9,7 +9,7 @@ from .jc_types import ParserInfoType, JSONDictType
from jc import appdirs
__version__ = '1.22.4'
__version__ = '1.22.5'
parsers: List[str] = [
'acpi',

View File

@ -5,7 +5,7 @@ with open('README.md', 'r') as f:
setuptools.setup(
name='jc',
version='1.22.4',
version='1.22.5',
author='Kelly Brazil',
author_email='kellyjonbrazil@gmail.com',
description='Converts the output of popular command-line tools and file-types to JSON.',