From 2a99a27feb7661a8dfd3edb60f798fdf0c38d7f2 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Tue, 20 Jul 2021 00:01:45 -0400 Subject: [PATCH] Bump version to 0.9.30 --- .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 017ccd00..7a4cc252 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.29 +0.9.30 diff --git a/README.md b/README.md index 81acb99e..6a1e0c84 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.30 + + * [Node Daemon] Fixes bug with schema validation + #### v0.9.29 * [Node Daemon] Corrects numerous bugs with node logging framework diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 878fdf2f..0b87ab57 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.29' +version = '0.9.30' # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 3f6a5572..c2994a5f 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.29', + version='0.9.30', packages=['pvc', 'pvc.cli_lib'], install_requires=[ 'Click', diff --git a/debian/changelog b/debian/changelog index 27d913da..647e2051 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pvc (0.9.30-0) unstable; urgency=high + + * [Node Daemon] Fixes bug with schema validation + + -- Joshua M. Boniface Tue, 20 Jul 2021 00:01:45 -0400 + pvc (0.9.29-0) unstable; urgency=high * [Node Daemon] Corrects numerous bugs with node logging framework diff --git a/docs/index.md b/docs/index.md index 0724fb8b..0eccf69a 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.30 + + * [Node Daemon] Fixes bug with schema validation + #### v0.9.29 * [Node Daemon] Corrects numerous bugs with node logging framework diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 08f02087..6042522a 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.29' +version = '0.9.30' ############################################################################### # PVCD - node daemon startup program