From 7a32d8da9d3e5e2793a557972308c813a8f40257 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Tue, 19 Nov 2024 14:43:43 -0500 Subject: [PATCH] Bump version to 0.9.105 --- .version | 2 +- CHANGELOG.md | 4 ++++ 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 +- 7 files changed, 15 insertions(+), 5 deletions(-) diff --git a/.version b/.version index dc449b9a..899b174a 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.104 +0.9.105 diff --git a/CHANGELOG.md b/CHANGELOG.md index ba4eb401..23774e69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## PVC Changelog +###### [v0.9.105](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.105) + + * [API Daemon/Provisioner] Corrects some small bugs with OVA handling + ###### [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" diff --git a/client-cli/setup.py b/client-cli/setup.py index 74ab4192..2e5d2fd8 100644 --- a/client-cli/setup.py +++ b/client-cli/setup.py @@ -2,7 +2,7 @@ setup( name="pvc", - version="0.9.104", + version="0.9.105", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 89eef1f8..ece5bcae 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pvc (0.9.105-0) unstable; urgency=high + + * [API Daemon/Provisioner] Corrects some small bugs with OVA handling + + -- Joshua M. Boniface Tue, 19 Nov 2024 14:43:43 -0500 + pvc (0.9.104-0) unstable; urgency=high * [API Daemon] Fixes a bug that failed uploading of RAW block devices in "storage volume upload" diff --git a/health-daemon/pvchealthd/Daemon.py b/health-daemon/pvchealthd/Daemon.py index 841b1133..971290df 100644 --- a/health-daemon/pvchealthd/Daemon.py +++ b/health-daemon/pvchealthd/Daemon.py @@ -33,7 +33,7 @@ import signal # Daemon version -version = "0.9.104" +version = "0.9.105" ########################################################## diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 3f1d97ab..a37e6e8b 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -49,7 +49,7 @@ import json # Daemon version -version = "0.9.104" +version = "0.9.105" ########################################################## diff --git a/worker-daemon/pvcworkerd/Daemon.py b/worker-daemon/pvcworkerd/Daemon.py index 12b525e4..3ba1dca8 100755 --- a/worker-daemon/pvcworkerd/Daemon.py +++ b/worker-daemon/pvcworkerd/Daemon.py @@ -58,7 +58,7 @@ ) # Daemon version -version = "0.9.104" +version = "0.9.105" config = cfg.get_configuration()