Bump version to 0.9.10
This commit is contained in:
parent
ac3ef3d792
commit
518d699c15
|
@ -20,6 +20,14 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r
|
|||
|
||||
## Changelog
|
||||
|
||||
#### v0.9.10
|
||||
|
||||
* Moves OSD stats uploading to primary, eliminating reporting failures while hosts are down
|
||||
* Documentation updates
|
||||
* Significantly improves RBD locking behaviour in several situations, eliminating cold-cluster start issues and failed VM boot-ups after crashes
|
||||
* Fixes some timeout delays with fencing
|
||||
* Fixes bug in validating YAML provisioner userdata
|
||||
|
||||
#### v0.9.9
|
||||
|
||||
* Adds documentation updates
|
||||
|
|
|
@ -1,3 +1,13 @@
|
|||
pvc (0.9.10-0) unstable; urgency=high
|
||||
|
||||
* Moves OSD stats uploading to primary, eliminating reporting failures while hosts are down
|
||||
* Documentation updates
|
||||
* Significantly improves RBD locking behaviour in several situations, eliminating cold-cluster start issues and failed VM boot-ups after crashes
|
||||
* Fixes some timeout delays with fencing
|
||||
* Fixes bug in validating YAML provisioner userdata
|
||||
|
||||
-- Joshua M. Boniface <joshua@boniface.me> Tue, 15 Dec 2020 10:45:15 -0500
|
||||
|
||||
pvc (0.9.9-0) unstable; urgency=high
|
||||
|
||||
* Adds documentation updates
|
||||
|
|
|
@ -18,6 +18,14 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r
|
|||
|
||||
## Changelog
|
||||
|
||||
#### v0.9.10
|
||||
|
||||
* Moves OSD stats uploading to primary, eliminating reporting failures while hosts are down
|
||||
* Documentation updates
|
||||
* Significantly improves RBD locking behaviour in several situations, eliminating cold-cluster start issues and failed VM boot-ups after crashes
|
||||
* Fixes some timeout delays with fencing
|
||||
* Fixes bug in validating YAML provisioner userdata
|
||||
|
||||
#### v0.9.9
|
||||
|
||||
* Adds documentation updates
|
||||
|
|
|
@ -54,7 +54,7 @@ import pvcnoded.CephInstance as CephInstance
|
|||
import pvcnoded.MetadataAPIInstance as MetadataAPIInstance
|
||||
|
||||
# Version string for startup output
|
||||
version = '0.9.9'
|
||||
version = '0.9.10'
|
||||
|
||||
###############################################################################
|
||||
# PVCD - node daemon startup program
|
||||
|
|
Loading…
Reference in New Issue