Skip to content

Commit

Permalink
minor fix for macOS binary
Browse files Browse the repository at this point in the history
  • Loading branch information
kellyjonbrazil committed Jan 21, 2022
1 parent 6e7b6af commit 8e6a31d
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ to dictionaries and lists of dictionaries.

## Online Documentation

### Latest:
### Latest

https://github.com/kellyjonbrazil/jc/tree/master/docs

Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions jc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
## Online Documentation
### Latest:
### Latest
https://github.com/kellyjonbrazil/jc/tree/master/docs
Expand All @@ -26,7 +26,7 @@
Specific versions can also be selected by tag in the branch dropdown menu.
## Usage Example:
## Usage Example
>>> import subprocess
>>> import jc
Expand Down
7 changes: 5 additions & 2 deletions jc/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import importlib
from jc import appdirs

__version__ = '1.18.0'
__version__ = '1.18.1'

parsers = [
'acpi',
Expand Down Expand Up @@ -112,7 +112,10 @@
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):
Expand Down
2 changes: 1 addition & 1 deletion man/jc.1
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name='jc',
version='1.18.0',
version='1.18.1',
author='Kelly Brazil',
author_email='[email protected]',
description='Converts the output of popular command-line tools and file-types to JSON.',
Expand Down

0 comments on commit 8e6a31d

Please sign in to comment.