From 0c75a127b22007d6140b278a7c1477c6ed9546ae Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sun, 23 May 2021 17:23:10 -0400 Subject: [PATCH] Bump version to 0.9.18 --- 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 b9e39b8c..a4a80025 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.18 + + * Adds VM rename functionality to API and CLI client + #### v0.9.17 * [CLI] Fixes bugs in log follow output diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 665bab38..571e8e4c 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.17' +version = '0.9.18' 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 8b0d0670..7f3c4352 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pvc (0.9.18-0) unstable; urgency=high + + * Adds VM rename functionality to API and CLI client + + -- Joshua M. Boniface Sun, 23 May 2021 17:23:10 -0400 + pvc (0.9.17-0) unstable; urgency=high * [CLI] Fixes bugs in log follow output diff --git a/docs/index.md b/docs/index.md index 459cf3fe..bb31470f 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.18 + + * Adds VM rename functionality to API and CLI client + #### v0.9.17 * [CLI] Fixes bugs in log follow output diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 8d453a43..096f8f34 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.17' +version = '0.9.18' ############################################################################### # PVCD - node daemon startup program