From 1a906b589e66039cd38b91e17a3dab1a37c83827 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sat, 16 Sep 2023 00:18:13 -0400 Subject: [PATCH] Bump version to 0.9.74 --- .version | 2 +- CHANGELOG.md | 8 ++++++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 10 ++++++++++ node-daemon/pvcnoded/Daemon.py | 2 +- 6 files changed, 22 insertions(+), 4 deletions(-) diff --git a/.version b/.version index a1e00f49..1855740f 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.73 +0.9.74 diff --git a/CHANGELOG.md b/CHANGELOG.md index 259d1432..c1ac9c06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ ## PVC Changelog +###### [v0.9.74](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.74) + + * [Docs] Removes docs from the main repo + * [Client CLI] Ensures that "provision" VMs are shown in the right colour + * [Node Daemon] Separates the node monitoring subsystem into its own thread with a longer, customizable update interval + * [Node Daemon] Adds checks for PSU input power reundancy (psur) and hardware RAID (hwrd) + * [Node Daemon] Updates when Keepalive start messages are printed (end of run, with runtime) to align with new monitoring messages + ###### [v0.9.73](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.73) * [Node Daemon] Fixes a bug creating monitoring instance diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 8ffa9495..f7b3c59b 100755 --- a/api-daemon/pvcapid/Daemon.py +++ b/api-daemon/pvcapid/Daemon.py @@ -27,7 +27,7 @@ from ssl import SSLContext, TLSVersion from distutils.util import strtobool as dustrtobool # Daemon version -version = "0.9.73" +version = "0.9.74" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index cafdf072..db19f51f 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.73", + version="0.9.74", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 462b9625..85dfcd53 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +pvc (0.9.74-0) unstable; urgency=high + + * [Docs] Removes docs from the main repo + * [Client CLI] Ensures that "provision" VMs are shown in the right colour + * [Node Daemon] Separates the node monitoring subsystem into its own thread with a longer, customizable update interval + * [Node Daemon] Adds checks for PSU input power reundancy (psur) and hardware RAID (hwrd) + * [Node Daemon] Updates when Keepalive start messages are printed (end of run, with runtime) to align with new monitoring messages + + -- Joshua M. Boniface Sat, 16 Sep 2023 00:18:13 -0400 + pvc (0.9.73-0) unstable; urgency=high * [Node Daemon] Fixes a bug creating monitoring instance diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index c78a0af3..8fb0c43c 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.73" +version = "0.9.74" ##########################################################