From 2de388ec5f7c211c45e459e9fd0e6bd2fb44fcfa Mon Sep 17 00:00:00 2001 From: Rebecca Breu Date: Sat, 10 Jul 2021 17:48:21 +0200 Subject: [PATCH] Bump version number to 0.2.0 --- beeref.desktop | 8 ++++---- beeref/constants.py | 4 ++-- setup.py | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/beeref.desktop b/beeref.desktop index 5172638..898e97e 100644 --- a/beeref.desktop +++ b/beeref.desktop @@ -1,11 +1,11 @@ [Desktop Entry] Name=BeeRef -Comment=BeeRef 0.1.1 +Comment=BeeRef 0.2.0 Terminal=false -Exec=/home/yourname/path/to/BeeRef-0.1.1/BeeRef-0.1.1 +Exec=/home/yourname/path/to/BeeRef-0.2.0/BeeRef-0.2.0 Type=Application -Icon=/home/yourname/path/to/BeeRef-0.1.1/beeref/assets/logo.png -Name[en_US]=Beeref +Icon=/home/yourname/path/to/BeeRef-0.2.0/beeref/assets/logo.png +Name[en_US]=BeeRef MimeType=application/x-beeref; Categories=Qt;KDE;Graphics; diff --git a/beeref/constants.py b/beeref/constants.py index ab2b490..6fc9d6c 100644 --- a/beeref/constants.py +++ b/beeref/constants.py @@ -15,8 +15,8 @@ APPNAME = 'BeeRef' APPNAME_FULL = f'{APPNAME} Reference Image Viewer' -VERSION = '0.1.1' -WEBSITE = 'https://beeref.org' +VERSION = '0.2.0' +WEBSITE = 'https://github.com/rbreu/beeref' COPYRIGHT = 'Copyright © 2021 Rebecca Breu' COLORS = { diff --git a/setup.py b/setup.py index a71c7d6..e05755c 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='BeeRef', - version='0.1.1', + version='0.2.0', author='Rebecca Breu', author_email='rebecca@rbreu.de', url='https://github.com/rbreu/beeref',