diff --git a/README.md b/README.md index 81ce865e..7f21ca98 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.14 + + * Fixes bugs around cloned volume provisioning + * Fixes some minor visual bugs + * Minor license update (from GPL3+ to GPL3) + * Adds qemu-guest-agent support to provisioner-created VMs by default + #### v0.9.13 * Adds nicer startup messages for daemons diff --git a/debian/changelog b/debian/changelog index 380801c1..68ee9282 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +pvc (0.9.14-0) unstable; urgency=high + + * Fixes bugs around cloned volume provisioning + * Fixes some minor visual bugs + * Minor license update (from GPL3+ to GPL3) + * Adds qemu-guest-agent support to provisioner-created VMs by default + + -- Joshua M. Boniface Tue, 30 Mar 2021 10:27:37 -0400 + pvc (0.9.13-0) unstable; urgency=high * Adds nicer startup messages for daemons diff --git a/docs/index.md b/docs/index.md index 6d596a9e..c9671bf7 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.14 + + * Fixes bugs around cloned volume provisioning + * Fixes some minor visual bugs + * Minor license update (from GPL3+ to GPL3) + * Adds qemu-guest-agent support to provisioner-created VMs by default + #### v0.9.13 * Adds nicer startup messages for daemons diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 6c2ebb01..c18bd3f2 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.13' +version = '0.9.14' ############################################################################### # PVCD - node daemon startup program