From 7f17dabbfe718fb43a8a0564c9fe7a6414cc9502 Mon Sep 17 00:00:00 2001 From: Gobinath Loganathan Date: Sun, 20 Nov 2022 17:22:47 -0500 Subject: [PATCH] Bump version to 2.1.4 --- debian/changelog | 4 +++- safeeyes/glade/about_dialog.glade | 2 +- safeeyes/safeeyes.py | 2 +- setup.py | 4 ++-- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index 47b5d25..7a784b0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,6 @@ -safeeyes (2.1.3-1) xenial; urgency=high +safeeyes (2.1.4-1) xenial; urgency=high + * Minor bug fixes + * Fix the error if there is no long break * Add wayland support for do not disturb me plugin diff --git a/safeeyes/glade/about_dialog.glade b/safeeyes/glade/about_dialog.glade index d3210f0..c78679f 100644 --- a/safeeyes/glade/about_dialog.glade +++ b/safeeyes/glade/about_dialog.glade @@ -71,7 +71,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.center 10 10 - Safe Eyes 2.1.3 + Safe Eyes 2.1.4 center diff --git a/safeeyes/safeeyes.py b/safeeyes/safeeyes.py index 91dd444..cf24f08 100644 --- a/safeeyes/safeeyes.py +++ b/safeeyes/safeeyes.py @@ -40,7 +40,7 @@ from safeeyes.ui.settings_dialog import SettingsDialog gi.require_version('Gtk', '3.0') from gi.repository import Gtk -SAFE_EYES_VERSION = "2.1.3" +SAFE_EYES_VERSION = "2.1.4" class SafeEyes: diff --git a/setup.py b/setup.py index 888670d..4709aef 100644 --- a/setup.py +++ b/setup.py @@ -78,14 +78,14 @@ def __package_data(): setuptools.setup( name="safeeyes", - version="2.1.3", + version="2.1.4", 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.3.tar.gz", + download_url="https://github.com/slgobinath/SafeEyes/archive/v2.1.4.tar.gz", packages=setuptools.find_packages(), package_data={'safeeyes': __package_data()}, data_files=__data_files(),