mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-17 00:07:37 +02:00
version bump
This commit is contained in:
@ -1,5 +1,9 @@
|
|||||||
jc changelog
|
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
|
20221230 v1.22.4
|
||||||
- Add `iwconfig` command parser
|
- Add `iwconfig` command parser
|
||||||
- Add NeXTSTEP format support to the PLIST file parser
|
- Add NeXTSTEP format support to the PLIST file parser
|
||||||
|
@ -48,7 +48,7 @@ class info():
|
|||||||
author: str = 'Kelly Brazil'
|
author: str = 'Kelly Brazil'
|
||||||
author_email: str = 'kellyjonbrazil@gmail.com'
|
author_email: str = 'kellyjonbrazil@gmail.com'
|
||||||
website: str = 'https://github.com/kellyjonbrazil/jc'
|
website: str = 'https://github.com/kellyjonbrazil/jc'
|
||||||
copyright: str = '© 2019-2022 Kelly Brazil'
|
copyright: str = '© 2019-2023 Kelly Brazil'
|
||||||
license: str = 'MIT License'
|
license: str = 'MIT License'
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ from .jc_types import ParserInfoType, JSONDictType
|
|||||||
from jc import appdirs
|
from jc import appdirs
|
||||||
|
|
||||||
|
|
||||||
__version__ = '1.22.4'
|
__version__ = '1.22.5'
|
||||||
|
|
||||||
parsers: List[str] = [
|
parsers: List[str] = [
|
||||||
'acpi',
|
'acpi',
|
||||||
|
2
setup.py
2
setup.py
@ -5,7 +5,7 @@ with open('README.md', 'r') as f:
|
|||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='jc',
|
name='jc',
|
||||||
version='1.22.4',
|
version='1.22.5',
|
||||||
author='Kelly Brazil',
|
author='Kelly Brazil',
|
||||||
author_email='kellyjonbrazil@gmail.com',
|
author_email='kellyjonbrazil@gmail.com',
|
||||||
description='Converts the output of popular command-line tools and file-types to JSON.',
|
description='Converts the output of popular command-line tools and file-types to JSON.',
|
||||||
|
Reference in New Issue
Block a user