From 518d699c155af55bcd8f68badaaa38d3d88a08df Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Tue, 15 Dec 2020 10:45:15 -0500 Subject: [PATCH] Bump version to 0.9.10 --- README.md | 8 ++++++++ debian/changelog | 10 ++++++++++ docs/index.md | 8 ++++++++ node-daemon/pvcnoded/Daemon.py | 2 +- 4 files changed, 27 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 54291587..ad9c78ff 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/debian/changelog b/debian/changelog index 8c846245..87145dec 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Tue, 15 Dec 2020 10:45:15 -0500 + pvc (0.9.9-0) unstable; urgency=high * Adds documentation updates diff --git a/docs/index.md b/docs/index.md index 5e42b8fe..3ce90dd4 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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 diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index b5ebadd0..74ffaf12 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -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