1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00

minor fix for macOS binary

This commit is contained in:
Kelly Brazil
2022-01-21 14:08:19 -08:00
parent 6e7b6afe87
commit 8e6a31d3da
6 changed files with 14 additions and 8 deletions

View File

@ -1,5 +1,8 @@
jc changelog
20220121 v1.18.1
- Minor fix for MacOS binary
20220121 v1.18.0
- Add high-level parse API for built-in and plugin parsers
- Add python module developer documentation

View File

@ -16,7 +16,7 @@ to dictionaries and lists of dictionaries.
## Online Documentation
### Latest:
### Latest
https://github.com/kellyjonbrazil/jc/tree/master/docs
@ -28,7 +28,7 @@ Replace `{{full_version_number}}` - e.g. `1.17.7`:
Specific versions can also be selected by tag in the branch dropdown menu.
## Usage Example:
## Usage Example
>>> import subprocess
>>> import jc

View File

@ -14,7 +14,7 @@ to dictionaries and lists of dictionaries.
## Online Documentation
### Latest:
### Latest
https://github.com/kellyjonbrazil/jc/tree/master/docs
@ -26,7 +26,7 @@ Replace `{{full_version_number}}` - e.g. `1.17.7`:
Specific versions can also be selected by tag in the branch dropdown menu.
## Usage Example:
## Usage Example
>>> import subprocess
>>> import jc

View File

@ -8,7 +8,7 @@ import re
import importlib
from jc import appdirs
__version__ = '1.18.0'
__version__ = '1.18.1'
parsers = [
'acpi',
@ -112,7 +112,10 @@ if os.path.isdir(local_parsers_dir):
local_parsers.append(plugin_name)
if plugin_name not in parsers:
parsers.append(plugin_name)
del name
try:
del name
except Exception:
pass
def _cliname_to_modname(parser_cli_name):

View File

@ -1,4 +1,4 @@
.TH jc 1 2022-01-21 1.18.0 "JSON CLI output utility"
.TH jc 1 2022-01-21 1.18.1 "JSON CLI output utility"
.SH NAME
jc \- JSONifies the output of many CLI tools and file-types
.SH SYNOPSIS

View File

@ -5,7 +5,7 @@ with open('README.md', 'r') as f:
setuptools.setup(
name='jc',
version='1.18.0',
version='1.18.1',
author='Kelly Brazil',
author_email='kellyjonbrazil@gmail.com',
description='Converts the output of popular command-line tools and file-types to JSON.',