diff --git a/changelog.txt b/changelog.txt index 4098b4d7..8102a17e 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,8 @@ jc changelog +20200610 v1.11.4 +- Update ls parser to fix error on parsing an empty directory + 20200609 v1.11.3 - Add local parser plugin feature (contributed by Dean Serenevy) diff --git a/jc/cli.py b/jc/cli.py index aed938fa..6f55ae40 100644 --- a/jc/cli.py +++ b/jc/cli.py @@ -21,7 +21,7 @@ import jc.appdirs as appdirs class info(): - version = '1.11.3' + version = '1.11.4' description = 'jc cli output JSON conversion tool' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' diff --git a/setup.py b/setup.py index 0ca52eae..0d83a07b 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('README.md', 'r') as f: setuptools.setup( name='jc', - version='1.11.3', + version='1.11.4', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Converts the output of popular command-line tools and file-types to JSON.',