From fa1d93e933770f0cc2a00a8a82e30df4d7ef930c Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 19 Jul 2021 16:55:41 -0400 Subject: [PATCH] Bump version to 0.9.29 --- .version | 2 +- README.md | 4 ++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 6 ++++++ docs/index.md | 4 ++++ node-daemon/pvcnoded/Daemon.py | 2 +- 7 files changed, 18 insertions(+), 4 deletions(-) diff --git a/.version b/.version index 051fc56b..017ccd00 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.28 +0.9.29 diff --git a/README.md b/README.md index 7ab38718..81acb99e 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,10 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.29 + + * [Node Daemon] Corrects numerous bugs with node logging framework + #### v0.9.28 * [CLI Client] Revamp confirmation options for "vm modify" command diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index bb7fd1b5..878fdf2f 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.28' +version = '0.9.29' # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index ba2996d7..3f6a5572 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.28', + version='0.9.29', packages=['pvc', 'pvc.cli_lib'], install_requires=[ 'Click', diff --git a/debian/changelog b/debian/changelog index 5d13af86..27d913da 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pvc (0.9.29-0) unstable; urgency=high + + * [Node Daemon] Corrects numerous bugs with node logging framework + + -- Joshua M. Boniface Mon, 19 Jul 2021 16:55:41 -0400 + pvc (0.9.28-0) unstable; urgency=high * [CLI Client] Revamp confirmation options for "vm modify" command diff --git a/docs/index.md b/docs/index.md index df61710e..0724fb8b 100644 --- a/docs/index.md +++ b/docs/index.md @@ -42,6 +42,10 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.29 + + * [Node Daemon] Corrects numerous bugs with node logging framework + #### v0.9.28 * [CLI Client] Revamp confirmation options for "vm modify" command diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 897714eb..08f02087 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.28' +version = '0.9.29' ############################################################################### # PVCD - node daemon startup program