diff --git a/changelog.txt b/changelog.txt
index 4b9f91b6..24061b56 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,6 +1,6 @@
 jc changelog
 
-202005xx v1.11.0
+20200522 v1.11.0
 - Add dmidecode command parser
 - Update stat command parser to add OSX support
 - Update netstat command parser to add OSX support
diff --git a/jc/cli.py b/jc/cli.py
index 8ef97b5f..7a042196 100644
--- a/jc/cli.py
+++ b/jc/cli.py
@@ -17,7 +17,7 @@ import jc.utils
 
 
 class info():
-    version = '1.10.12'
+    version = '1.11.0'
     description = 'jc cli output JSON conversion tool'
     author = 'Kelly Brazil'
     author_email = 'kellyjonbrazil@gmail.com'
diff --git a/setup.py b/setup.py
index c2f69254..c4c0cb25 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.12',
+    version='1.11.0',
     author='Kelly Brazil',
     author_email='kellyjonbrazil@gmail.com',
     description='Converts the output of popular command-line tools and file-types to JSON.',