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,8 @@
|
|||||||
jc changelog
|
jc changelog
|
||||||
|
|
||||||
|
20240422 v1.25.3
|
||||||
|
- Documentation updates
|
||||||
|
|
||||||
20240323 v1.25.2
|
20240323 v1.25.2
|
||||||
- Add `apt-cache-show` command parser
|
- Add `apt-cache-show` command parser
|
||||||
- Add `apt-get-sqq` command parser
|
- Add `apt-get-sqq` command parser
|
||||||
|
@ -10,7 +10,7 @@ from jc import appdirs
|
|||||||
from jc import utils
|
from jc import utils
|
||||||
|
|
||||||
|
|
||||||
__version__ = '1.25.2'
|
__version__ = '1.25.3'
|
||||||
|
|
||||||
parsers: List[str] = [
|
parsers: List[str] = [
|
||||||
'acpi',
|
'acpi',
|
||||||
|
4
man/jc.1
4
man/jc.1
@ -1,4 +1,4 @@
|
|||||||
.TH jc 1 2024-03-23 1.25.2 "JSON Convert"
|
.TH jc 1 2024-04-22 1.25.3 "JSON Convert"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types,
|
\fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types,
|
||||||
and strings
|
and strings
|
||||||
@ -1289,7 +1289,7 @@ lines from the beginning through \fBSTOP\fP lines from the end
|
|||||||
\fB:\fP
|
\fB:\fP
|
||||||
all lines
|
all lines
|
||||||
|
|
||||||
.SH SlURP
|
.SH SLURP
|
||||||
Some parsers support multi-item input and can output an array of results in a
|
Some parsers support multi-item input and can output an array of results in a
|
||||||
single pass. Slurping works for string parsers that accept a single line of
|
single pass. Slurping works for string parsers that accept a single line of
|
||||||
input. (e.g. \fBurl\fP and \fBip-address\fP) To see a list of parsers that support
|
input. (e.g. \fBurl\fP and \fBip-address\fP) To see a list of parsers that support
|
||||||
|
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.25.2',
|
version='1.25.3',
|
||||||
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.',
|
||||||
|
@ -194,7 +194,7 @@ lines from the beginning through \fBSTOP\fP lines from the end
|
|||||||
\fB:\fP
|
\fB:\fP
|
||||||
all lines
|
all lines
|
||||||
|
|
||||||
.SH SlURP
|
.SH SLURP
|
||||||
Some parsers support multi-item input and can output an array of results in a
|
Some parsers support multi-item input and can output an array of results in a
|
||||||
single pass. Slurping works for string parsers that accept a single line of
|
single pass. Slurping works for string parsers that accept a single line of
|
||||||
input. (e.g. \fBurl\fP and \fBip-address\fP) To see a list of parsers that support
|
input. (e.g. \fBurl\fP and \fBip-address\fP) To see a list of parsers that support
|
||||||
|
Reference in New Issue
Block a user