-
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: Alexandre Bruyelles <[email protected]>
- Loading branch information
1 parent
a29661e
commit 2f3eafd
Showing
5 changed files
with
18 additions
and
6 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
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,3 +1,10 @@ | ||
backurne (2.1.0) UNRELEASED; urgency=medium | ||
|
||
* Backuping only a subset for a `backurne backup` invocation is now possible, as well as forcing a backup (despite being considered unneeded regarding the profile). | ||
* **Backurne** now reports time elapsed to process each backup, either to a plain file or via syslog. See the `report_time` configuration entry. | ||
|
||
-- Alexandre Bruyelles <[email protected]> Sat, 04 Jul 2020 13:50:19 +0100 | ||
|
||
backurne (2.0.0) UNRELEASED; urgency=medium | ||
|
||
* The `list-mapped` subcommand has been reworked to support complex mapping. Command outputs (both cli & api) has been altered to support those changes. | ||
|
@@ -6,7 +13,6 @@ backurne (2.0.0) UNRELEASED; urgency=medium | |
|
||
-- Alexandre Bruyelles <[email protected]> Mon, 13 Jan 2020 13:40:19 +0100 | ||
|
||
|
||
backurne (1.1.0) UNRELEASED; urgency=medium | ||
|
||
* Add hook support | ||
|
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
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='2.0.0', | ||
version='2.1.0', | ||
author='Alexandre Bruyelles', | ||
author_email='[email protected]', | ||
description="Backup Ceph's RBD on Ceph, with Proxmox integration", | ||
|
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 |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
from . import stats | ||
|
||
|
||
VERSION = '2.0.0' | ||
VERSION = '2.1.0' | ||
|
||
|
||
def handle_exc(func): | ||
|