From e9b6072fa0ae56a3aaa85f10136b78460200a9e2 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Tue, 9 Jan 2024 12:15:53 -0500 Subject: [PATCH] Bump version to 0.9.89 --- .version | 2 +- CHANGELOG.md | 5 +++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 7 +++++++ health-daemon/pvchealthd/Daemon.py | 2 +- node-daemon/pvcnoded/Daemon.py | 2 +- worker-daemon/pvcworkerd/Daemon.py | 2 +- 8 files changed, 18 insertions(+), 6 deletions(-) diff --git a/.version b/.version index 799ab3ad..c63ec81d 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.88 +0.9.89 diff --git a/CHANGELOG.md b/CHANGELOG.md index bf75e2c0..4b67bc49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## PVC Changelog +###### [v0.9.89](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.89) + + * [API/Worker Daemons] Fixes a bug with the Celery result backends not being properly initialized on Debian 10/11. + * [API Daemon] Fixes a bug if VM CPU stats are missing on Debian 10. + ###### [v0.9.88](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.88) * [API Daemon] Adds an additional Prometheus metrics proxy for Zookeeper stats. diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 79cb1078..68501bf2 100755 --- a/api-daemon/pvcapid/Daemon.py +++ b/api-daemon/pvcapid/Daemon.py @@ -27,7 +27,7 @@ from distutils.util import strtobool as dustrtobool import daemon_lib.config as cfg # Daemon version -version = "0.9.88" +version = "0.9.89" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 7b3483a5..ad313f5c 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.88", + version="0.9.89", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index b35c9321..982e6f61 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +pvc (0.9.89-0) unstable; urgency=high + + * [API/Worker Daemons] Fixes a bug with the Celery result backends not being properly initialized on Debian 10/11. + * [API Daemon] Fixes a bug if VM CPU stats are missing on Debian 10. + + -- Joshua M. Boniface Tue, 09 Jan 2024 12:15:53 -0500 + pvc (0.9.88-0) unstable; urgency=high * [API Daemon] Adds an additional Prometheus metrics proxy for Zookeeper stats. diff --git a/health-daemon/pvchealthd/Daemon.py b/health-daemon/pvchealthd/Daemon.py index 11bc9a45..8edb76ef 100644 --- a/health-daemon/pvchealthd/Daemon.py +++ b/health-daemon/pvchealthd/Daemon.py @@ -33,7 +33,7 @@ import os import signal # Daemon version -version = "0.9.88" +version = "0.9.89" ########################################################## diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 5c607b18..d5778738 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -49,7 +49,7 @@ import re import json # Daemon version -version = "0.9.88" +version = "0.9.89" ########################################################## diff --git a/worker-daemon/pvcworkerd/Daemon.py b/worker-daemon/pvcworkerd/Daemon.py index d06c9be3..18da9733 100755 --- a/worker-daemon/pvcworkerd/Daemon.py +++ b/worker-daemon/pvcworkerd/Daemon.py @@ -44,7 +44,7 @@ from daemon_lib.vmbuilder import ( ) # Daemon version -version = "0.9.88" +version = "0.9.89" config = cfg.get_configuration()