-
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
75950b4
commit 32ee06a
Showing
5 changed files
with
21 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,12 @@ | ||
backurne (2.3.0) UNRELEASED; urgency=medium | ||
|
||
* Report time to influxdb | ||
* Support Microsoft dynamic disks (LDM) | ||
* Implement tasks priority | ||
* Reimplement the workers logic, with a per-cluster pool | ||
|
||
-- Alexandre Bruyelles <[email protected]> Sat, 30 Jul 2022 11:08:19 +0100 | ||
|
||
backurne (2.2.1) UNRELEASED; urgency=medium | ||
|
||
* gzip has been replaced by zstd. | ||
|
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.2.1', | ||
version='2.3.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.2.1' | ||
VERSION = '2.3.0' | ||
|
||
|
||
def handle_exc(func): | ||
|