diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a6bf2a9..64fcf39 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,7 @@ +0.2.1 - (unreleased) +==================== + + 0.2.0 - 2021-09-06 ================== diff --git a/beeref.desktop b/beeref.desktop index 2a2d1a5..076e16d 100644 --- a/beeref.desktop +++ b/beeref.desktop @@ -1,8 +1,8 @@ [Desktop Entry] Name=BeeRef -Comment=BeeRef 0.2.0 +Comment=BeeRef 0.2.1-dev Terminal=false -Exec=/home/yourname/path/to/BeeRef-0.2.0-linux +Exec=/home/yourname/path/to/BeeRef-0.2.1-dev-linux Type=Application Icon=/home/yourname/path/to/logo.png Name[en_US]=BeeRef diff --git a/beeref/constants.py b/beeref/constants.py index d1be05b..1c20482 100644 --- a/beeref/constants.py +++ b/beeref/constants.py @@ -15,7 +15,7 @@ APPNAME = 'BeeRef' APPNAME_FULL = f'{APPNAME} Reference Image Viewer' -VERSION = '0.2.0' +VERSION = '0.2.1-dev' WEBSITE = 'https://github.com/rbreu/beeref' COPYRIGHT = 'Copyright © 2021 Rebecca Breu' diff --git a/setup.py b/setup.py index e05755c..c766d01 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='BeeRef', - version='0.2.0', + version='0.2.1-dev', author='Rebecca Breu', author_email='rebecca@rbreu.de', url='https://github.com/rbreu/beeref',