From 3f5279b97c386c736e0e2faa5c39d68ef89c46aa Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 4 Apr 2020 17:25:55 -0700 Subject: [PATCH] version bump to 1.10.1 --- changelog.txt | 3 +++ jc/cli.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/changelog.txt b/changelog.txt index 9805566a..aef8bf7d 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,8 @@ jc changelog +20200402 v1.10.1 +- Code cleanup + 20200402 v1.10.0 - Add color output by default when not piping data to another program - Add -m option for monochrome output diff --git a/jc/cli.py b/jc/cli.py index 900d549f..e77a3050 100644 --- a/jc/cli.py +++ b/jc/cli.py @@ -18,7 +18,7 @@ import jc.utils class info(): - version = '1.10.0' + version = '1.10.1' description = 'jc cli output JSON conversion tool' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' diff --git a/setup.py b/setup.py index f07ca5e5..62a94431 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.0', + version='1.10.1', 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.',