diff --git a/command_line/setup.py b/command_line/setup.py
index e8b65c9c88b36b6540139712651dfd55106467db..c75b33990c7ef04f5767886249d687c1ee4a45e6 100644
--- a/command_line/setup.py
+++ b/command_line/setup.py
@@ -31,7 +31,7 @@ from setuptools import setup, find_packages
 from setuptools.command.test import test as TestCommand
 from sys import version_info
 
-__PACKAGE_VERSION__ = "0.1.6"
+__PACKAGE_VERSION__ = "1.0.0"
 
 deps = []
 
diff --git a/gui/setup.py b/gui/setup.py
index 24ff299d3c0036e99a1589da36344d690df9c29e..728cc716f73b000d469d88d9062be7617bd8945c 100644
--- a/gui/setup.py
+++ b/gui/setup.py
@@ -32,8 +32,8 @@
 # Standard imports
 from setuptools import setup, find_packages
 
-__PACKAGE_VERSION__ = "0.2.4"
-__LIBRARY_VERSION__ = "0.1.0"
+__PACKAGE_VERSION__ = "0.2.5"
+__LIBRARY_VERSION__ = "0.2.0"
 
 setup(
 
diff --git a/library/setup.py b/library/setup.py
index 888906b12c100e84c4b7f150a5ff539fa4a63132..3f61099d29fa30ad08b5e660bebb5dba90c02a72 100644
--- a/library/setup.py
+++ b/library/setup.py
@@ -35,8 +35,8 @@ from distutils import sysconfig
 from setuptools import setup, Extension, find_packages
 from setuptools.command.test import test as TestCommand
 
-__PACKAGE_VERSION__ = "0.1.9"
-__LIBRARY_VERSION__ = "0.3.0"
+__PACKAGE_VERSION__ = "0.2.0"
+__LIBRARY_VERSION__ = "1.0.0"
 
 ################################################################################