From df40b779af646b01b890732aa1fc86ebc0c3dede Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 29 Jan 2024 09:39:10 -0500 Subject: [PATCH] Bump version to 0.9.92 --- .version | 2 +- CHANGELOG.md | 8 ++++++++ api-daemon/pvcapid/Daemon.py | 2 +- 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 +- 8 files changed, 24 insertions(+), 6 deletions(-) diff --git a/.version b/.version index 9b1bddff..8d5317cc 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.91 +0.9.92 diff --git a/CHANGELOG.md b/CHANGELOG.md index 33d46330..e0a9cafc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ ## PVC Changelog +###### [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 + * [API Daemon] Fixes an incorrect variable assignment + * [Provisioner] Improves the error handling of various steps in the debootstrap and rinse example scripts + * [CLI Client] Fixes two bugs around missing keys that were added recently (uses get() instead direct dictionary refs) + * [CLI Client] Improves API error handling via GET retries (x3) and better server status code handling + ###### [v0.9.91](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.91) * [Client CLI] Fixes a bug and improves output during cluster task events. diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 6648d420..a47d93f3 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.91" +version = "0.9.92" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 55b1748e..9b1af7e7 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.91", + version="0.9.92", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index f7aab336..b567db9a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +pvc (0.9.92-0) unstable; urgency=high + + * [CLI Client] Adds the new restore state to the colours list for VM status + * [API Daemon] Fixes an incorrect variable assignment + * [Provisioner] Improves the error handling of various steps in the debootstrap and rinse example scripts + * [CLI Client] Fixes two bugs around missing keys that were added recently (uses get() instead direct dictionary refs) + * [CLI Client] Improves API error handling via GET retries (x3) and better server status code handling + + -- Joshua M. Boniface Mon, 29 Jan 2024 09:39:10 -0500 + pvc (0.9.91-0) unstable; urgency=high * [Client CLI] Fixes a bug and improves output during cluster task events. diff --git a/health-daemon/pvchealthd/Daemon.py b/health-daemon/pvchealthd/Daemon.py index 01ad8348..68fb8a32 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.91" +version = "0.9.92" ########################################################## diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 6f35e7cd..8ca4d10c 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.91" +version = "0.9.92" ########################################################## diff --git a/worker-daemon/pvcworkerd/Daemon.py b/worker-daemon/pvcworkerd/Daemon.py index dd189e44..6df45b1c 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.91" +version = "0.9.92" config = cfg.get_configuration()