From 92ad2068db1e930622bdfddabfdb1c754c8ff586 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 5 Mar 2023 10:06:54 -0800 Subject: [PATCH] version bump --- CHANGELOG | 3 +++ docs/parsers/zpool_status.md | 2 +- jc/lib.py | 2 +- man/jc.1 | 2 +- setup.py | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 201df851..65474600 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,8 @@ jc changelog +20230305 v1.23.1 +- Fix `zpool-status` command parser for lines that start with tab + 20230227 v1.23.0 - Add input slicing as a `jc` command-line option - Add `ssh` configuration file parser diff --git a/docs/parsers/zpool_status.md b/docs/parsers/zpool_status.md index b0b84a52..9fc005af 100644 --- a/docs/parsers/zpool_status.md +++ b/docs/parsers/zpool_status.md @@ -160,4 +160,4 @@ Returns: ### Parser Information Compatibility: linux, darwin, freebsd -Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/jc/lib.py b/jc/lib.py index bc97d64e..4621b907 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.23.0' +__version__ = '1.23.1' parsers: List[str] = [ 'acpi', diff --git a/man/jc.1 b/man/jc.1 index f2b1bf87..9d1f4474 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2023-02-27 1.23.0 "JSON Convert" +.TH jc 1 2023-03-05 1.23.0 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings diff --git a/setup.py b/setup.py index 3485138c..72e4615a 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('README.md', 'r') as f: setuptools.setup( name='jc', - version='1.23.0', + version='1.23.1', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Converts the output of popular command-line tools and file-types to JSON.',