diff --git a/changelog.txt b/changelog.txt index 44b9e4fe..a5e35372 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,8 @@ jc changelog +20200511 v1.10.12 +- Remove shebang from jc/cli.py for Fedora packaging + 20200511 v1.10.11 - Change file permissions for Fedora packaging diff --git a/jc/cli.py b/jc/cli.py index 9ec2d2ef..d8a728ad 100644 --- a/jc/cli.py +++ b/jc/cli.py @@ -17,7 +17,7 @@ import jc.utils class info(): - version = '1.10.11' + version = '1.10.12' description = 'jc cli output JSON conversion tool' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' diff --git a/setup.py b/setup.py index eaa349a4..becb61e3 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('README.md', 'r') as f: setuptools.setup( name='jc', - version='1.10.11', + version='1.10.12', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='This tool serializes the output of popular command line tools and filetypes to structured JSON output.',