From ae6248227b6c44dc01b90f07cec7709b65821a7e Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 3 Jan 2023 11:53:57 -0800 Subject: [PATCH] version bump --- CHANGELOG | 4 ++++ jc/cli.py | 2 +- jc/lib.py | 2 +- setup.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index fe4f758c..fd76a3ae 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 diff --git a/jc/cli.py b/jc/cli.py index 19f039a1..ec7434f3 100644 --- a/jc/cli.py +++ b/jc/cli.py @@ -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' diff --git a/jc/lib.py b/jc/lib.py index e0eca5f3..ad1f7145 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.4' +__version__ = '1.22.5' parsers: List[str] = [ 'acpi', diff --git a/setup.py b/setup.py index 2d9a8b4f..8d59c8d4 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.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.',