From 7082982a332803d35cae0529e49aa88eee1ed7d0 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 5 Jul 2021 23:40:32 -0400 Subject: [PATCH] Bump version to 0.9.23 --- .version | 2 +- README.md | 5 +++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 7 +++++++ docs/index.md | 5 +++++ node-daemon/pvcnoded/Daemon.py | 2 +- 7 files changed, 21 insertions(+), 4 deletions(-) diff --git a/.version b/.version index ea3f0d7a..68a59457 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.22 +0.9.23 diff --git a/README.md b/README.md index dbed5c9e..2fad55f1 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,11 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.23 + + * [Daemons] Fixes a critical overwriting bug in zkhandler when schema paths are not yet valid + * [Node Daemon] Ensures the daemon mode is updated on every startup (fixes the side effect of the above bug in 0.9.22) + #### v0.9.22 * [API Daemon] Drastically improves performance when getting large lists (e.g. VMs) diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 4b8b378e..2ebb2721 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.22' +version = '0.9.23' # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 35a7b6c6..021794e3 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.22', + version='0.9.23', packages=['pvc', 'pvc.cli_lib'], install_requires=[ 'Click', diff --git a/debian/changelog b/debian/changelog index 5bdd67d4..7bb61618 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +pvc (0.9.23-0) unstable; urgency=high + + * [Daemons] Fixes a critical overwriting bug in zkhandler when schema paths are not yet valid + * [Node Daemon] Ensures the daemon mode is updated on every startup (fixes the side effect of the above bug in 0.9.22) + + -- Joshua M. Boniface Mon, 05 Jul 2021 23:40:32 -0400 + pvc (0.9.22-0) unstable; urgency=high * [API Daemon] Drastically improves performance when getting large lists (e.g. VMs) diff --git a/docs/index.md b/docs/index.md index 8f79b914..9a9a9b34 100644 --- a/docs/index.md +++ b/docs/index.md @@ -42,6 +42,11 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.23 + + * [Daemons] Fixes a critical overwriting bug in zkhandler when schema paths are not yet valid + * [Node Daemon] Ensures the daemon mode is updated on every startup (fixes the side effect of the above bug in 0.9.22) + #### v0.9.22 * [API Daemon] Drastically improves performance when getting large lists (e.g. VMs) diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 7db60dac..cfccfa7b 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -55,7 +55,7 @@ import pvcnoded.CephInstance as CephInstance import pvcnoded.MetadataAPIInstance as MetadataAPIInstance # Version string for startup output -version = '0.9.22' +version = '0.9.23' ############################################################################### # PVCD - node daemon startup program