From e4a287c84817436cb7090d4bb00f2f743678b7a0 Mon Sep 17 00:00:00 2001 From: Gobinath Date: Mon, 19 Mar 2018 12:22:54 -0400 Subject: [PATCH] Release 2.0.5 --- debian/changelog | 4 +++- safeeyes/SafeEyes.py | 2 +- safeeyes/glade/about_dialog.glade | 2 +- setup.py | 4 ++-- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index 5fd9ec9..2140dfd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,6 @@ -safeeyes (2.0.4-1) xenial; urgency=high +safeeyes (2.0.5-1) xenial; urgency=high + + * Fix no long breaks * Fix issues with locales diff --git a/safeeyes/SafeEyes.py b/safeeyes/SafeEyes.py index d468868..83ade4a 100644 --- a/safeeyes/SafeEyes.py +++ b/safeeyes/SafeEyes.py @@ -39,7 +39,7 @@ from safeeyes.settings import SettingsDialog gi.require_version('Gtk', '3.0') from gi.repository import Gtk -SAFE_EYES_VERSION = "2.0.4" +SAFE_EYES_VERSION = "2.0.5" class SafeEyes(object): diff --git a/safeeyes/glade/about_dialog.glade b/safeeyes/glade/about_dialog.glade index 2f30f50..dce9665 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.0.4 + Safe Eyes 2.0.5 center diff --git a/setup.py b/setup.py index 32c5cf8..bbb41c7 100644 --- a/setup.py +++ b/setup.py @@ -70,13 +70,13 @@ __data_files = list(_data_files('share')) setuptools.setup( name="safeeyes", - version="2.0.4", + version="2.0.5", description="Protect your eyes from eye strain using this continuous breaks reminder.", long_description=long_description, author="Gobinath Loganathan", author_email="slgobinath@gmail.com", url="https://github.com/slgobinath/SafeEyes", - download_url="https://github.com/slgobinath/SafeEyes/archive/v2.0.3.tar.gz", + download_url="https://github.com/slgobinath/SafeEyes/archive/v2.0.5.tar.gz", packages=setuptools.find_packages(), package_data={'safeeyes': __package_data()}, data_files=__data_files,