From 7ecc6a2635b0ab8faac05d6832af54c298521cfc Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 30 Jul 2021 12:08:12 -0400 Subject: [PATCH] Bump version to 0.9.31 --- .version | 2 +- README.md | 8 ++++++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 10 ++++++++++ docs/index.md | 8 ++++++++ node-daemon/pvcnoded/Daemon.py | 2 +- 7 files changed, 30 insertions(+), 4 deletions(-) diff --git a/.version b/.version index 7a4cc252..0d50a5cf 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.30 +0.9.31 diff --git a/README.md b/README.md index 6a1e0c84..af657123 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,14 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.31 + + * [Packages] Cleans up obsolete Suggests lines + * [Node Daemon] Adjusts log text of VM migrations to show the correct source node + * [API Daemon] Adjusts the OVA importer to support floppy RASD types for compatability + * [API Daemon] Ensures that volume resize commands without a suffix get B appended + * [API Daemon] Removes the explicit setting of image-features in PVC; defaulting to the limited set has been moved to the ceph.conf configuration on nodes via PVC Ansible + #### v0.9.30 * [Node Daemon] Fixes bug with schema validation diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 0b87ab57..e3006592 100755 --- a/api-daemon/pvcapid/Daemon.py +++ b/api-daemon/pvcapid/Daemon.py @@ -25,7 +25,7 @@ import yaml from distutils.util import strtobool as dustrtobool # Daemon version -version = '0.9.30' +version = '0.9.31' # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index c2994a5f..78df0229 100644 --- a/client-cli/setup.py +++ b/client-cli/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='pvc', - version='0.9.30', + version='0.9.31', packages=['pvc', 'pvc.cli_lib'], install_requires=[ 'Click', diff --git a/debian/changelog b/debian/changelog index 647e2051..ef5c0283 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +pvc (0.9.31-0) unstable; urgency=high + + * [Packages] Cleans up obsolete Suggests lines + * [Node Daemon] Adjusts log text of VM migrations to show the correct source node + * [API Daemon] Adjusts the OVA importer to support floppy RASD types for compatability + * [API Daemon] Ensures that volume resize commands without a suffix get B appended + * [API Daemon] Removes the explicit setting of image-features in PVC; defaulting to the limited set has been moved to the ceph.conf configuration on nodes via PVC Ansible + + -- Joshua M. Boniface Fri, 30 Jul 2021 12:08:12 -0400 + pvc (0.9.30-0) unstable; urgency=high * [Node Daemon] Fixes bug with schema validation diff --git a/docs/index.md b/docs/index.md index 0eccf69a..a119fb0d 100644 --- a/docs/index.md +++ b/docs/index.md @@ -42,6 +42,14 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.31 + + * [Packages] Cleans up obsolete Suggests lines + * [Node Daemon] Adjusts log text of VM migrations to show the correct source node + * [API Daemon] Adjusts the OVA importer to support floppy RASD types for compatability + * [API Daemon] Ensures that volume resize commands without a suffix get B appended + * [API Daemon] Removes the explicit setting of image-features in PVC; defaulting to the limited set has been moved to the ceph.conf configuration on nodes via PVC Ansible + #### v0.9.30 * [Node Daemon] Fixes bug with schema validation diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 6042522a..16e1d0ae 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -56,7 +56,7 @@ import pvcnoded.CephInstance as CephInstance import pvcnoded.MetadataAPIInstance as MetadataAPIInstance # Version string for startup output -version = '0.9.30' +version = '0.9.31' ############################################################################### # PVCD - node daemon startup program