diff --git a/.version b/.version index 2d06c471..9b1bddff 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.90 +0.9.91 diff --git a/CHANGELOG.md b/CHANGELOG.md index 59eaa5ab..33d46330 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ ## PVC Changelog +###### [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. + * [Client CLI] Improves the output of the task list display. + * [Provisioner] Fixes some missing cloud-init modules in the default debootstrap script. + * [Client CLI] Fixes a bug with a missing argument to the vm_define helper function. + * [All] Fixes inconsistent package find + rm commands to avoid errors in dpkg. + ###### [v0.9.90](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.90) * [Client CLI/API Daemon] Adds additional backup metainfo and an emailed report option to autobackups. diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index e13a12cb..6648d420 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.90" +version = "0.9.91" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 8d4399b3..55b1748e 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.90", + version="0.9.91", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 2cd5aafc..f7aab336 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +pvc (0.9.91-0) unstable; urgency=high + + * [Client CLI] Fixes a bug and improves output during cluster task events. + * [Client CLI] Improves the output of the task list display. + * [Provisioner] Fixes some missing cloud-init modules in the default debootstrap script. + * [Client CLI] Fixes a bug with a missing argument to the vm_define helper function. + * [All] Fixes inconsistent package find + rm commands to avoid errors in dpkg. + + -- Joshua M. Boniface Tue, 23 Jan 2024 10:02:19 -0500 + pvc (0.9.90-0) unstable; urgency=high * [Client CLI/API Daemon] Adds additional backup metainfo and an emailed report option to autobackups. diff --git a/health-daemon/pvchealthd/Daemon.py b/health-daemon/pvchealthd/Daemon.py index dfc98488..01ad8348 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.90" +version = "0.9.91" ########################################################## diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 1eac0a7e..6f35e7cd 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.90" +version = "0.9.91" ########################################################## diff --git a/worker-daemon/pvcworkerd/Daemon.py b/worker-daemon/pvcworkerd/Daemon.py index c5ad1fde..dd189e44 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.90" +version = "0.9.91" config = cfg.get_configuration()