From afdf254297b5c22bcc625c400e9cc3bc6f92ed5a Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Thu, 19 Aug 2021 12:37:58 -0400 Subject: [PATCH] Bump version to 0.9.32 --- .version | 2 +- README.md | 6 ++++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 8 ++++++++ docs/index.md | 6 ++++++ node-daemon/pvcnoded/Daemon.py | 2 +- 7 files changed, 24 insertions(+), 4 deletions(-) diff --git a/.version b/.version index 0d50a5cf..1424e647 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.31 +0.9.32 diff --git a/README.md b/README.md index 7577766c..a975414b 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,12 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl ## Changelog +#### v0.9.32 + + * [CLI Client] Fixes some incorrect colours in network lists + * [Documentation] Adds documentation screenshots of CLI client + * [Node Daemon] Fixes a bug if VM stats gathering fails + #### v0.9.31 * [Packages] Cleans up obsolete Suggests lines diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index e3006592..d9381aec 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.31' +version = '0.9.32' # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 78df0229..5e043b01 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.31', + version='0.9.32', packages=['pvc', 'pvc.cli_lib'], install_requires=[ 'Click', diff --git a/debian/changelog b/debian/changelog index ef5c0283..a4a3b9e4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +pvc (0.9.32-0) unstable; urgency=high + + * [CLI Client] Fixes some incorrect colours in network lists + * [Documentation] Adds documentation screenshots of CLI client + * [Node Daemon] Fixes a bug if VM stats gathering fails + + -- Joshua M. Boniface Thu, 19 Aug 2021 12:37:58 -0400 + pvc (0.9.31-0) unstable; urgency=high * [Packages] Cleans up obsolete Suggests lines diff --git a/docs/index.md b/docs/index.md index 86ab3ca5..2b9948d3 100644 --- a/docs/index.md +++ b/docs/index.md @@ -55,6 +55,12 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl ## Changelog +#### v0.9.32 + + * [CLI Client] Fixes some incorrect colours in network lists + * [Documentation] Adds documentation screenshots of CLI client + * [Node Daemon] Fixes a bug if VM stats gathering fails + #### v0.9.31 * [Packages] Cleans up obsolete Suggests lines diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 97773981..01d4cf32 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.31' +version = '0.9.32' ############################################################################### # PVCD - node daemon startup program