diff --git a/CHANGELOG b/CHANGELOG index 7aaa6a35..43d8c40a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,6 @@ jc changelog -20220106 v1.17.7 (in progress) +20220106 v1.17.7 - Add stat command streaming parser tested on linux and macOS 20220103 v1.17.6 diff --git a/jc/__init__.py b/jc/__init__.py index 8f56cd9c..ba4ae139 100644 --- a/jc/__init__.py +++ b/jc/__init__.py @@ -73,4 +73,4 @@ Module Example: """ name = 'jc' -__version__ = '1.17.6' +__version__ = '1.17.7' diff --git a/man/jc.1 b/man/jc.1 index 60c99521..5589fc6a 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2022-01-08 1.17.6 "JSON CLI output utility" +.TH jc 1 2022-01-14 1.17.7 "JSON CLI output utility" .SH NAME jc \- JSONifies the output of many CLI tools and file-types .SH SYNOPSIS diff --git a/setup.py b/setup.py index f612e16e..3d5d6d1f 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('README.md', 'r') as f: setuptools.setup( name='jc', - version='1.17.6', + version='1.17.7', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Converts the output of popular command-line tools and file-types to JSON.',