-
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
f8dc878
commit 2082c63
Showing
5 changed files
with
17 additions
and
3 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,13 @@ | ||
backurne (2.2.0) UNRELEASED; urgency=medium | ||
|
||
* add a --cleanup option to the `backup` subcommand. | ||
* fix vmfs6 support. | ||
* add a --debug option for one-shot verbosity. | ||
* rework the `map` subcommand with enhancement to the vmdk support (especially in conjunction with lvm). | ||
* 'Plain' cluster can now be reached not only via SSH, but also via any user-defined way. Kubernetes is the main target here, yet it should work with anything. | ||
|
||
-- Alexandre Bruyelles <[email protected]> Sat, 24 Aug 2020 09:40:19 +0100 | ||
|
||
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). | ||
|
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.1.0', | ||
version='2.2.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.1.0' | ||
VERSION = '2.2.0' | ||
|
||
|
||
def handle_exc(func): | ||
|