diff --git a/README.md b/README.md index 5601bb64..eba781b1 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.16 + + * Improves some CLI help messages + * Skips empty local cluster in CLI + * Adjusts how confirmations happen during VM modify restarts + * Fixes bug around corrupted VM log files + * Fixes bug around subprocess pipe exceptions + #### v0.9.15 * [CLI] Adds additional verification (--yes) to several VM management commands diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index c034b3fb..7477d23b 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.15' +version = '0.9.16' 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 bd21b85a..1794233f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +pvc (0.9.16-0) unstable; urgency=high + + * Improves some CLI help messages + * Skips empty local cluster in CLI + * Adjusts how confirmations happen during VM modify restarts + * Fixes bug around corrupted VM log files + * Fixes bug around subprocess pipe exceptions + + -- Joshua M. Boniface Mon, 10 May 2021 01:13:21 -0400 + pvc (0.9.15-0) unstable; urgency=high * [CLI] Adds additional verification (--yes) to several VM management commands diff --git a/docs/index.md b/docs/index.md index b819634a..2d5edcb7 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.16 + + * Improves some CLI help messages + * Skips empty local cluster in CLI + * Adjusts how confirmations happen during VM modify restarts + * Fixes bug around corrupted VM log files + * Fixes bug around subprocess pipe exceptions + #### v0.9.15 * [CLI] Adds additional verification (--yes) to several VM management commands diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 8f15f54c..be7ec738 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.15' +version = '0.9.16' ############################################################################### # PVCD - node daemon startup program