From 31254e8174d513a296aeacb06f3784aea5e7fce0 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 18 Nov 2024 10:53:56 -0500 Subject: [PATCH] Bump version to 0.9.104 --- .version | 2 +- CHANGELOG.md | 8 ++++++++ client-cli/setup.py | 2 +- debian/changelog | 10 ++++++++++ health-daemon/pvchealthd/Daemon.py | 2 +- node-daemon/pvcnoded/Daemon.py | 2 +- worker-daemon/pvcworkerd/Daemon.py | 2 +- 7 files changed, 23 insertions(+), 5 deletions(-) diff --git a/.version b/.version index fbd5dd77..dc449b9a 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.103 +0.9.104 diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e253d0b..ba4eb401 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ ## PVC Changelog +###### [v0.9.104](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.104) + + * [API Daemon] Fixes a bug that failed uploading of RAW block devices in "storage volume upload" + * [API Daemon/CLI Client] Adds support for VM automirrors, replicating the functionality of autobackup but for cross-cluster mirroring + * [CLI Client] Improves the help output of several commands + * [API Daemon/CLI Client] Moves VM snapshot age conversions to human-readable values out of the API and into the client to open up more programatic handling in the future + * [Worker Daemon] Improves the Celery logging output clarity by including the calling function in any task output + ###### [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 diff --git a/client-cli/setup.py b/client-cli/setup.py index 83801b98..74ab4192 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.103", + version="0.9.104", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index c2f1a0ce..89eef1f8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +pvc (0.9.104-0) unstable; urgency=high + + * [API Daemon] Fixes a bug that failed uploading of RAW block devices in "storage volume upload" + * [API Daemon/CLI Client] Adds support for VM automirrors, replicating the functionality of autobackup but for cross-cluster mirroring + * [CLI Client] Improves the help output of several commands + * [API Daemon/CLI Client] Moves VM snapshot age conversions to human-readable values out of the API and into the client to open up more programatic handling in the future + * [Worker Daemon] Improves the Celery logging output clarity by including the calling function in any task output + + -- Joshua M. Boniface Mon, 18 Nov 2024 10:53:56 -0500 + pvc (0.9.103-0) unstable; urgency=high * [Provisioner] Fixes a bug with the change in `storage_hosts` to FQDNs affecting the VM Builder diff --git a/health-daemon/pvchealthd/Daemon.py b/health-daemon/pvchealthd/Daemon.py index 7fd6fea6..841b1133 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.103" +version = "0.9.104" ########################################################## diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 8bb1d430..3f1d97ab 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.103" +version = "0.9.104" ########################################################## diff --git a/worker-daemon/pvcworkerd/Daemon.py b/worker-daemon/pvcworkerd/Daemon.py index 9947f203..12b525e4 100755 --- a/worker-daemon/pvcworkerd/Daemon.py +++ b/worker-daemon/pvcworkerd/Daemon.py @@ -58,7 +58,7 @@ from daemon_lib.automirror import ( ) # Daemon version -version = "0.9.103" +version = "0.9.104" config = cfg.get_configuration()