diff --git a/README.md b/README.md index 6cb9d526..54291587 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,13 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.9 + + * Adds documentation updates + * Removes single-element list stripping and fixes surrounding bugs + * Adds additional fields to some API endpoints for ease of parsing by clients + * Fixes bugs with network configuration + #### v0.9.8 * Adds support for cluster backup/restore diff --git a/debian/changelog b/debian/changelog index c927f7db..8c846245 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +pvc (0.9.9-0) unstable; urgency=high + + * Adds documentation updates + * Removes single-element list stripping and fixes surrounding bugs + * Adds additional fields to some API endpoints for ease of parsing by clients + * Fixes bugs with network configuration + + -- Joshua M. Boniface Wed, 09 Dec 2020 02:20:20 -0500 + pvc (0.9.8-0) unstable; urgency=high * Adds support for cluster backup/restore diff --git a/docs/index.md b/docs/index.md index 791cfd1f..5e42b8fe 100644 --- a/docs/index.md +++ b/docs/index.md @@ -18,6 +18,13 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.9 + + * Adds documentation updates + * Removes single-element list stripping and fixes surrounding bugs + * Adds additional fields to some API endpoints for ease of parsing by clients + * Fixes bugs with network configuration + #### v0.9.8 * Adds support for cluster backup/restore diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 88a35cb2..a29434a3 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.8' +version = '0.9.9' ############################################################################### # PVCD - node daemon startup program