-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: JackSlateur <[email protected]>
- Loading branch information
1 parent
d394ac4
commit f40fa64
Showing
3 changed files
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
backurne (0.0.1) UNRELEASED; urgency=medium | ||
backurne (1.0.0) UNRELEASED; urgency=medium | ||
|
||
* First release | ||
|
||
-- Alexandre Bruyelles <[email protected]> Mon, 11 Feb 2019 12:38:19 +0100 | ||
-- Alexandre Bruyelles <[email protected]> Mon, 30 Sep 2019 23:40:19 +0100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setuptools.setup( | ||
name='backurne', | ||
version='0.2', | ||
version='1.0.0', | ||
author='Alexandre Bruyelles', | ||
author_email='[email protected]', | ||
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'], | ||
) |