From a4e5323e81135323088611e6a5830cf92c559731 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Tue, 17 Nov 2020 12:34:04 -0500 Subject: [PATCH] Bump version to 0.9.5 --- README.md | 7 +++++++ debian/changelog | 9 +++++++++ docs/index.md | 7 +++++++ node-daemon/pvcnoded/Daemon.py | 2 +- 4 files changed, 24 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 46ccbc0f..3d899534 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,13 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.5 + + * Fixes bug with line count in log follow + * Fixes bug with disk stat output being None + * Adds short pretty health output + * Documentation updates + #### v0.9.4 * Fixes major bug in OVA parser diff --git a/debian/changelog b/debian/changelog index 0bed3e15..f26d3828 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +pvc (0.9.5-0) unstable; urgency=high + + * Fixes bug with line count in log follow + * Fixes bug with disk stat output being None + * Adds short pretty health output + * Documentation updates + + -- Joshua M. Boniface Tue, 17 Nov 2020 12:34:04 -0500 + pvc (0.9.4-0) unstable; urgency=high * Fixes major bug in OVA parser diff --git a/docs/index.md b/docs/index.md index 63f24fc0..3b2b1b52 100644 --- a/docs/index.md +++ b/docs/index.md @@ -18,6 +18,13 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.5 + + * Fixes bug with line count in log follow + * Fixes bug with disk stat output being None + * Adds short pretty health output + * Documentation updates + #### v0.9.4 * Fixes major bug in OVA parser diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 9209273b..c3ce4c55 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.4' +version = '0.9.5' ############################################################################### # PVCD - node daemon startup program