diff --git a/CHANGELOG b/CHANGELOG
index 57ffb1fe..08a30269 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,8 @@
 jc changelog
 
+20210415 v1.15.2
+- Add systeminfo parser tested on Windows
+
 20210413 v1.15.1
 - New feature to show parser documentation interactively with -h --parser_name
   for example: $ jc -h --arp
diff --git a/jc/__init__.py b/jc/__init__.py
index 7be29ad1..48a49ca3 100644
--- a/jc/__init__.py
+++ b/jc/__init__.py
@@ -69,4 +69,4 @@ Module Example:
 """
 
 name = 'jc'
-__version__ = '1.15.1'
+__version__ = '1.15.2'
diff --git a/setup.py b/setup.py
index 1b4a45f6..96a983ba 100755
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ with open('README.md', 'r') as f:
 
 setuptools.setup(
     name='jc',
-    version='1.15.1',
+    version='1.15.2',
     author='Kelly Brazil',
     author_email='kellyjonbrazil@gmail.com',
     description='Converts the output of popular command-line tools and file-types to JSON.',