diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f09a0a0..08cb035 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,11 +1,10 @@ -0.2.1 - (unreleased) +0.3.0 - (unreleased) ==================== Added ----- * Image cropping (Go to "Transform -> Crop", or press Shift + C) - Note that older version of BeeRef will display the images uncropped. * Show list of recent files on welcome screen * Keyboard shortcuts can now be configured via a settings file. Go to "Settings -> Open Settings Folder" and edit KeyboardSettings.ini diff --git a/beeref.desktop b/beeref.desktop index 076e16d..74d9362 100644 --- a/beeref.desktop +++ b/beeref.desktop @@ -1,8 +1,8 @@ [Desktop Entry] Name=BeeRef -Comment=BeeRef 0.2.1-dev +Comment=BeeRef 0.3.0-dev Terminal=false -Exec=/home/yourname/path/to/BeeRef-0.2.1-dev-linux +Exec=/home/yourname/path/to/BeeRef-0.3.0-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 1c20482..5845a72 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.1-dev' +VERSION = '0.3.0-dev' WEBSITE = 'https://github.com/rbreu/beeref' COPYRIGHT = 'Copyright © 2021 Rebecca Breu' diff --git a/setup.py b/setup.py index 01080d1..5ce2f31 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='BeeRef', - version='0.2.1-dev', + version='0.3.0-dev', author='Rebecca Breu', author_email='rebecca@rbreu.de', url='https://github.com/rbreu/beeref',