1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-13 01:20:24 +02:00

version bump

This commit is contained in:
Kelly Brazil
2023-03-05 10:06:54 -08:00
parent 59662a1500
commit 92ad2068db
5 changed files with 7 additions and 4 deletions

View File

@ -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

View File

@ -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)

View File

@ -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',

View File

@ -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

View File

@ -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.',