Prepare for release 2.0.7

This commit is contained in:
Gobinath 2019-01-21 11:45:52 -05:00
parent dc6bee31d6
commit 15648b2ccf
4 changed files with 9 additions and 5 deletions

6
debian/changelog vendored
View File

@ -1,4 +1,8 @@
safeeyes (2.0.6-3) xenial; urgency=high
safeeyes (2.0.7-1) xenial; urgency=high
* Add tray action buttons to the break screen
* Allow long short breaks for promodo mode
* Audible alert break before and DND while on battery
* Fix no long breaks

View File

@ -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.6"
SAFE_EYES_VERSION = "2.0.7"
class SafeEyes(object):

View File

@ -71,7 +71,7 @@ along with this program. If not, see &lt;http://www.gnu.org/licenses/&gt;.</pro
<property name="valign">center</property>
<property name="margin_top">10</property>
<property name="margin_bottom">10</property>
<property name="label" translatable="yes">Safe Eyes 2.0.6</property>
<property name="label" translatable="yes">Safe Eyes 2.0.7</property>
<property name="justify">center</property>
<attributes>
<attribute name="style" value="normal"/>

View File

@ -72,7 +72,7 @@ __data_files = list(_data_files('share'))
setuptools.setup(
name="safeeyes",
version="2.0.6",
version="2.0.7",
description="Protect your eyes from eye strain using this continuous breaks reminder.",
long_description=long_description,
long_description_content_type="text/markdown",
@ -92,5 +92,5 @@ setuptools.setup(
"Development Status :: 5 - Production/Stable",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: End Users/Desktop",
"Topic :: Utilities"] + [('Programming Language :: Python :: %s' % x) for x in '3 3.4 3.5 3.6'.split()]
"Topic :: Utilities"] + [('Programming Language :: Python :: %s' % x) for x in '3 3.4 3.5 3.6 3.7'.split()]
)