diff --git a/README.md b/README.md index 7f21ca98..5601bb64 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,12 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.15 + + * [CLI] Adds additional verification (--yes) to several VM management commands + * [CLI] Adds a method to override --yes/confirmation requirements via envvar (PVC_UNSAFE) + * [CLI] Adds description fields to PVC clusters in CLI + #### v0.9.14 * Fixes bugs around cloned volume provisioning diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index bda855f2..c034b3fb 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.14' +version = '0.9.15' 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 68ee9282..bd21b85a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +pvc (0.9.15-0) unstable; urgency=high + + * [CLI] Adds additional verification (--yes) to several VM management commands + * [CLI] Adds a method to override --yes/confirmation requirements via envvar (PVC_UNSAFE) + * [CLI] Adds description fields to PVC clusters in CLI + + -- Joshua M. Boniface Thu, 08 Apr 2021 13:37:47 -0400 + pvc (0.9.14-0) unstable; urgency=high * Fixes bugs around cloned volume provisioning diff --git a/docs/index.md b/docs/index.md index c9671bf7..b819634a 100644 --- a/docs/index.md +++ b/docs/index.md @@ -18,6 +18,12 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.15 + + * [CLI] Adds additional verification (--yes) to several VM management commands + * [CLI] Adds a method to override --yes/confirmation requirements via envvar (PVC_UNSAFE) + * [CLI] Adds description fields to PVC clusters in CLI + #### v0.9.14 * Fixes bugs around cloned volume provisioning diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index c18bd3f2..8f15f54c 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.14' +version = '0.9.15' ############################################################################### # PVCD - node daemon startup program