From 9441cb3b2e7dc80938a799c2cce70c56b415a80c Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 1 Nov 2024 17:19:44 -0400 Subject: [PATCH] Bump version to 0.9.103 --- .version | 2 +- CHANGELOG.md | 5 +++++ 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 +- 7 files changed, 17 insertions(+), 5 deletions(-) diff --git a/.version b/.version index 4972fabc..fbd5dd77 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.102 +0.9.103 diff --git a/CHANGELOG.md b/CHANGELOG.md index 96c0c16c..8e253d0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## PVC Changelog +###### [v0.9.103](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.103) + + * [Provisioner] Fixes a bug with the change in `storage_hosts` to FQDNs affecting the VM Builder + * [Monitoring] Fixes the Munin plugin to work properly with sudo + ###### [v0.9.102](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.102) * [API Daemon] Ensures that received config snapshots update storage hosts in addition to secret UUIDs diff --git a/client-cli/setup.py b/client-cli/setup.py index 600c3d67..83801b98 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.102", + version="0.9.103", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 441aab36..c2f1a0ce 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +pvc (0.9.103-0) unstable; urgency=high + + * [Provisioner] Fixes a bug with the change in `storage_hosts` to FQDNs affecting the VM Builder + * [Monitoring] Fixes the Munin plugin to work properly with sudo + + -- Joshua M. Boniface Fri, 01 Nov 2024 17:19:44 -0400 + pvc (0.9.102-0) unstable; urgency=high * [API Daemon] Ensures that received config snapshots update storage hosts in addition to secret UUIDs diff --git a/health-daemon/pvchealthd/Daemon.py b/health-daemon/pvchealthd/Daemon.py index 5845e9e0..7fd6fea6 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.102" +version = "0.9.103" ########################################################## diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index d98adb45..8bb1d430 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.102" +version = "0.9.103" ########################################################## diff --git a/worker-daemon/pvcworkerd/Daemon.py b/worker-daemon/pvcworkerd/Daemon.py index bbe95dbb..b347e770 100755 --- a/worker-daemon/pvcworkerd/Daemon.py +++ b/worker-daemon/pvcworkerd/Daemon.py @@ -55,7 +55,7 @@ from daemon_lib.autobackup import ( ) # Daemon version -version = "0.9.102" +version = "0.9.103" config = cfg.get_configuration()