diff --git a/debian/changelog b/debian/changelog
index c8c218f9..cc06fe7d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,6 @@
-safeeyes (2.1.1-1) xenial; urgency=high
+safeeyes (2.1.2-1) xenial; urgency=high
+ * Fix missing icons and add random order of breaks
+
* Create desktop entries from the code
* Add Python 3.8 and 3.9 support
diff --git a/safeeyes/glade/about_dialog.glade b/safeeyes/glade/about_dialog.glade
index 7ecd6bc6..541c8539 100644
--- a/safeeyes/glade/about_dialog.glade
+++ b/safeeyes/glade/about_dialog.glade
@@ -71,7 +71,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.center
10
10
- Safe Eyes 2.1.1
+ Safe Eyes 2.1.2
center
diff --git a/safeeyes/safeeyes.py b/safeeyes/safeeyes.py
index 8d7773b7..8cfb7a46 100644
--- a/safeeyes/safeeyes.py
+++ b/safeeyes/safeeyes.py
@@ -40,7 +40,7 @@
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
-SAFE_EYES_VERSION = "2.1.1"
+SAFE_EYES_VERSION = "2.1.2"
class SafeEyes:
diff --git a/setup.py b/setup.py
index 629c547c..6356f8e1 100644
--- a/setup.py
+++ b/setup.py
@@ -78,14 +78,14 @@ def __package_data():
setuptools.setup(
name="safeeyes",
- version="2.1.1",
+ version="2.1.2",
description="Protect your eyes from eye strain using this continuous breaks reminder.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Gobinath Loganathan",
author_email="slgobinath@gmail.com",
url="https://github.com/slgobinath/SafeEyes",
- download_url="https://github.com/slgobinath/SafeEyes/archive/v2.1.1.tar.gz",
+ download_url="https://github.com/slgobinath/SafeEyes/archive/v2.1.2.tar.gz",
packages=setuptools.find_packages(),
package_data={'safeeyes': __package_data()},
data_files=__data_files(),