From 9de14c46fbb9abace794a2a9d8127173685f47cf Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 19 May 2021 17:06:29 -0400 Subject: [PATCH] Bump version to 0.9.17 --- README.md | 4 ++++ api-daemon/pvcapid/Daemon.py | 2 +- debian/changelog | 6 ++++++ docs/index.md | 4 ++++ node-daemon/pvcnoded/Daemon.py | 2 +- 5 files changed, 16 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index eba781b1..b9e39b8c 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,10 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.17 + + * [CLI] Fixes bugs in log follow output + #### v0.9.16 * Improves some CLI help messages diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 7477d23b..665bab38 100755 --- a/api-daemon/pvcapid/Daemon.py +++ b/api-daemon/pvcapid/Daemon.py @@ -26,7 +26,7 @@ import pvcapid.flaskapi as pvc_api ########################################################## # Version string for startup output -version = '0.9.16' +version = '0.9.17' if pvc_api.config['ssl_enabled']: context = (pvc_api.config['ssl_cert_file'], pvc_api.config['ssl_key_file']) diff --git a/debian/changelog b/debian/changelog index 1794233f..8b0d0670 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pvc (0.9.17-0) unstable; urgency=high + + * [CLI] Fixes bugs in log follow output + + -- Joshua M. Boniface Wed, 19 May 2021 17:06:29 -0400 + pvc (0.9.16-0) unstable; urgency=high * Improves some CLI help messages diff --git a/docs/index.md b/docs/index.md index 2d5edcb7..459cf3fe 100644 --- a/docs/index.md +++ b/docs/index.md @@ -18,6 +18,10 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.17 + + * [CLI] Fixes bugs in log follow output + #### v0.9.16 * Improves some CLI help messages diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index be7ec738..8d453a43 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -53,7 +53,7 @@ import pvcnoded.CephInstance as CephInstance import pvcnoded.MetadataAPIInstance as MetadataAPIInstance # Version string for startup output -version = '0.9.16' +version = '0.9.17' ############################################################################### # PVCD - node daemon startup program