From 2c8a6f6a44a21d14354a0f2d8d91d114d3a1687e Mon Sep 17 00:00:00 2001 From: Rebecca Breu Date: Thu, 23 Nov 2023 15:19:18 +0100 Subject: [PATCH] Prepare release 0.3.0 --- CHANGELOG.rst | 4 ++-- CONTRIBUTING.rst | 2 +- README.rst | 2 +- beeref.desktop | 4 ++-- beeref/constants.py | 4 ++-- setup.py | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 73f6bd4..5ce4724 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,5 @@ -0.3.0 - (unreleased) -==================== +0.3.0 - 2023-11-23 +================== Added ----- diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 1ec928a..71aad5a 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -44,7 +44,7 @@ Building the app To build the app, run:: - pyinstaller --onefile BeeRef.spec + pyinstaller BeeRef.spec You will find the generated executable in the folder ``dist``. diff --git a/README.rst b/README.rst index 5857318..25bbc54 100644 --- a/README.rst +++ b/README.rst @@ -58,7 +58,7 @@ This should tell you whether you need to install any additional libraries. Features -------- -* Move, scale, rotate and flip images +* Move, scale, rotate, crop and flip images * Mass-scale images to the same width, height or size * Mass-arrange images vertically, horizontally or for optimal usage of space * Add text notes diff --git a/beeref.desktop b/beeref.desktop index 74d9362..df0ff9a 100644 --- a/beeref.desktop +++ b/beeref.desktop @@ -1,8 +1,8 @@ [Desktop Entry] Name=BeeRef -Comment=BeeRef 0.3.0-dev +Comment=BeeRef 0.3.0 Terminal=false -Exec=/home/yourname/path/to/BeeRef-0.3.0-dev-linux +Exec=/home/yourname/path/to/BeeRef-0.3.0-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 5845a72..e29dd3b 100644 --- a/beeref/constants.py +++ b/beeref/constants.py @@ -15,9 +15,9 @@ APPNAME = 'BeeRef' APPNAME_FULL = f'{APPNAME} Reference Image Viewer' -VERSION = '0.3.0-dev' +VERSION = '0.3.0' WEBSITE = 'https://github.com/rbreu/beeref' -COPYRIGHT = 'Copyright © 2021 Rebecca Breu' +COPYRIGHT = 'Copyright © 2021-2023 Rebecca Breu' COLORS = { # Qt: diff --git a/setup.py b/setup.py index f5f1cde..de8d5ed 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='BeeRef', - version='0.3.0-dev', + version='0.3.0', author='Rebecca Breu', author_email='rebecca@rbreu.de', url='https://github.com/rbreu/beeref',