From bdbc2d4f1004331e5e29e2c310261504370bf7cf Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 11 Dec 2023 03:08:13 -0500 Subject: [PATCH] Bump version to 0.9.86 --- .version | 2 +- CHANGELOG.md | 6 ++++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 8 ++++++++ health-daemon/pvchealthd/Daemon.py | 2 +- node-daemon/pvcnoded/Daemon.py | 2 +- worker-daemon/pvcworkerd/Daemon.py | 2 +- 8 files changed, 20 insertions(+), 6 deletions(-) diff --git a/.version b/.version index 8d0065fc..ca6f47fe 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.85 +0.9.86 diff --git a/CHANGELOG.md b/CHANGELOG.md index 737ff168..e26343ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ## PVC Changelog +###### [v0.9.86](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.86) + + * [API Daemon] Significantly improves the performance of several commands via async Zookeeper calls and removal of superfluous backend calls. + * [Docs] Improves the project README and updates screenshot images to show the current output and more functionality. + * [API Daemon/CLI] Corrects some bugs in VM metainformation output. + ###### [v0.9.85](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.85) * [Packaging] Fixes a dependency bug introduced in 0.9.84 diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 94d22bac..64592303 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.85" +version = "0.9.86" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 9ce8f7c1..54435b09 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.85", + version="0.9.86", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index ca00187b..a1b9f57c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +pvc (0.9.86-0) unstable; urgency=high + + * [API Daemon] Significantly improves the performance of several commands via async Zookeeper calls and removal of superfluous backend calls. + * [Docs] Improves the project README and updates screenshot images to show the current output and more functionality. + * [API Daemon/CLI] Corrects some bugs in VM metainformation output. + + -- Joshua M. Boniface Mon, 11 Dec 2023 03:08:13 -0500 + pvc (0.9.85-0) unstable; urgency=high * [Packaging] Fixes a dependency bug introduced in 0.9.84 diff --git a/health-daemon/pvchealthd/Daemon.py b/health-daemon/pvchealthd/Daemon.py index 4d7349f4..acbde7b8 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.85" +version = "0.9.86" ########################################################## diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 66edfd7f..a12fe927 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -48,7 +48,7 @@ import re import json # Daemon version -version = "0.9.85" +version = "0.9.86" ########################################################## diff --git a/worker-daemon/pvcworkerd/Daemon.py b/worker-daemon/pvcworkerd/Daemon.py index 4b97c1fa..3edf7f1d 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.85" +version = "0.9.86" config = cfg.get_configuration()