diff --git a/Changelog.md b/Changelog.md new file mode 100644 index 0000000..006c106 --- /dev/null +++ b/Changelog.md @@ -0,0 +1,9 @@ +Version 1.0.0 + +This version is centered around ease of use and reporting. The core algorithm has not changed much, but the release is supposed to be easier for people to use, simplier to understand etc. + +**Notable changes** : + * **Backurne** now supports per-image locks. Multiple **Backurne** can now run at the same time, safely. However, worker count is per instance (backup_worker and live_worker). + * The source tree has been reworks to use python3-setuptools. Debian packages is supported, for easier install / updates. + * Status reporting has been greatly improved : output is more concise, progress is shown as much as possible. Each process current task is shown in **ps**, **htop** etc. + * Options parsing has been reworked and is more bulletproof. diff --git a/debian/changelog b/debian/changelog index b65992a..2a941be 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,5 @@ -backurne (0.0.1) UNRELEASED; urgency=medium +backurne (1.0.0) UNRELEASED; urgency=medium * First release - -- Alexandre Bruyelles <backurne@jack.fr.eu.org> Mon, 11 Feb 2019 12:38:19 +0100 + -- Alexandre Bruyelles <backurne@jack.fr.eu.org> Mon, 30 Sep 2019 23:40:19 +0100 diff --git a/setup.py b/setup.py index b75b650..4a7d506 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name='backurne', - version='0.2', + version='1.0.0', author='Alexandre Bruyelles', author_email='backurne@jack.fr.eu.org', description="Backup Ceph's RBD on Ceph, with Proxmox integration", @@ -27,5 +27,5 @@ python_requires='>=3.5', install_requires=['termcolor', 'PTable', 'requests', 'proxmoxer', 'sh', 'python-dateutil', 'filelock', - 'setproctitle', 'progressbar'], + 'setproctitle', 'progressbar'], )