From 18f09196befa18c556ea5cd49942b1e954d47ce2 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Tue, 30 Jan 2024 09:51:21 -0500 Subject: [PATCH] Bump version to 0.9.93 --- .version | 2 +- CHANGELOG.md | 4 ++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 6 ++++++ health-daemon/pvchealthd/Daemon.py | 2 +- node-daemon/pvcnoded/Daemon.py | 2 +- worker-daemon/pvcworkerd/Daemon.py | 2 +- 8 files changed, 16 insertions(+), 6 deletions(-) diff --git a/.version b/.version index 8d5317cc..8db7b2a4 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.92 +0.9.93 diff --git a/CHANGELOG.md b/CHANGELOG.md index e0a9cafc..db5d83c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## PVC Changelog +###### [v0.9.93](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.93) + + * [API Daemon] Fixes a bug where stuck zkhandler threads were not cleaned up on error + ###### [v0.9.92](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.92) * [CLI Client] Adds the new restore state to the colours list for VM status diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index a47d93f3..04c99379 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.92" +version = "0.9.93" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 9b1af7e7..d52d0c83 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.92", + version="0.9.93", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index b567db9a..3dcebd4a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pvc (0.9.93-0) unstable; urgency=high + + * [API Daemon] Fixes a bug where stuck zkhandler threads were not cleaned up on error + + -- Joshua M. Boniface Tue, 30 Jan 2024 09:51:21 -0500 + pvc (0.9.92-0) unstable; urgency=high * [CLI Client] Adds the new restore state to the colours list for VM status diff --git a/health-daemon/pvchealthd/Daemon.py b/health-daemon/pvchealthd/Daemon.py index 68fb8a32..87de5a79 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.92" +version = "0.9.93" ########################################################## diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 8ca4d10c..f8d42e34 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.92" +version = "0.9.93" ########################################################## diff --git a/worker-daemon/pvcworkerd/Daemon.py b/worker-daemon/pvcworkerd/Daemon.py index 6df45b1c..3892a6a4 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.92" +version = "0.9.93" config = cfg.get_configuration()