Bump the version to 2.1.5

This commit is contained in:
Gobinath Loganathan 2023-01-05 19:11:06 -05:00
parent d6a3596faa
commit 375bd9d737
4 changed files with 5 additions and 5 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
safeeyes (2.1.4-3) lunar; urgency=high
safeeyes (2.1.5-0) lunar; urgency=high
* Minor bug fixes
* Fix the ecd ..rror if there is no long break

View File

@ -71,7 +71,7 @@ along with this program. If not, see &lt;https://www.gnu.org/licenses/&gt;.</pr
<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.1.4</property>
<property name="label" translatable="yes">Safe Eyes 2.1.5</property>
<property name="justify">center</property>
<attributes>
<attribute name="style" value="normal"/>

View File

@ -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.4"
SAFE_EYES_VERSION = "2.1.5"
class SafeEyes:

View File

@ -78,14 +78,14 @@ def __package_data():
setuptools.setup(
name="safeeyes",
version="2.1.4",
version="2.1.5",
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.4.tar.gz",
download_url="https://github.com/slgobinath/SafeEyes/archive/v2.1.5.tar.gz",
packages=setuptools.find_packages(),
package_data={'safeeyes': __package_data()},
data_files=__data_files(),