From 72f233b186bb0e7a17fad0508e1996353cf2d49d Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 25 Oct 2022 11:53:08 -0700 Subject: [PATCH] version bump --- jc/lib.py | 2 +- man/jc.1 | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/jc/lib.py b/jc/lib.py index 56525f34..a403b314 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.1' +__version__ = '1.22.2' parsers: List[str] = [ 'acpi', diff --git a/man/jc.1 b/man/jc.1 index a6f91a07..60314f11 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2022-10-25 1.22.1 "JSON Convert" +.TH jc 1 2022-10-25 1.22.2 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings .SH SYNOPSIS diff --git a/setup.py b/setup.py index acae388d..b0f3d6e7 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.1', + version='1.22.2', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Converts the output of popular command-line tools and file-types to JSON.',