diff --git a/README.md b/README.md index c26abd46..6cb9d526 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.8 + + * Adds support for cluster backup/restore + * Moves location of `init` command in CLI to make room for the above + * Cleans up some invalid help messages from the API + #### v0.9.7 * Fixes bug with provisioner system template modifications diff --git a/debian/changelog b/debian/changelog index af9893b5..c927f7db 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +pvc (0.9.8-0) unstable; urgency=high + + * Adds support for cluster backup/restore + * Moves location of `init` command in CLI to make room for the above + * Cleans up some invalid help messages from the API + + -- Joshua M. Boniface Tue, 24 Nov 2020 12:26:57 -0500 + pvc (0.9.7-0) unstable; urgency=high * Fixes bug with provisioner system template modifications diff --git a/docs/index.md b/docs/index.md index 1fb61563..791cfd1f 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.8 + + * Adds support for cluster backup/restore + * Moves location of `init` command in CLI to make room for the above + * Cleans up some invalid help messages from the API + #### v0.9.7 * Fixes bug with provisioner system template modifications diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index bc53d949..88a35cb2 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.7' +version = '0.9.8' ############################################################################### # PVCD - node daemon startup program