Bump version number to 0.3.0-dev

This commit is contained in:
Rebecca Breu 2021-10-13 17:04:19 +02:00
parent 3345efaacf
commit 3d98ad13db
4 changed files with 5 additions and 6 deletions

View file

@ -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

View file

@ -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

View file

@ -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'

View file

@ -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',