From 78c774b6071dd7b006e70cab0d1bc31b565079ec Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 8 Mar 2024 14:23:07 -0500 Subject: [PATCH] Bump version to 0.9.96 --- .version | 2 +- CHANGELOG.md | 5 +++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 7 +++++++ health-daemon/pvchealthd/Daemon.py | 2 +- node-daemon/pvcnoded/Daemon.py | 2 +- worker-daemon/pvcworkerd/Daemon.py | 2 +- 8 files changed, 18 insertions(+), 6 deletions(-) diff --git a/.version b/.version index 129a8634..3f566c9f 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.95 +0.9.96 diff --git a/CHANGELOG.md b/CHANGELOG.md index b541c367..67ea2054 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## PVC Changelog +###### [v0.9.96](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.96) + + * [API Daemon] Fixes a bug when reporting node stats + * [API Daemon] Fixes a bug deleteing successful benchmark results + ###### [v0.9.95](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.95) * [API Daemon/CLI Client] Adds a flag to allow duplicate VNIs in network templates diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 0dd7c8e2..6862bad9 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.95" +version = "0.9.96" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 57e76d5e..0fdc8ddf 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.95", + version="0.9.96", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 27f09518..2c2e72b0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +pvc (0.9.96-0) unstable; urgency=high + + * [API Daemon] Fixes a bug when reporting node stats + * [API Daemon] Fixes a bug deleteing successful benchmark results + + -- Joshua M. Boniface Fri, 08 Mar 2024 14:23:06 -0500 + pvc (0.9.95-0) unstable; urgency=high * [API Daemon/CLI Client] Adds a flag to allow duplicate VNIs in network templates diff --git a/health-daemon/pvchealthd/Daemon.py b/health-daemon/pvchealthd/Daemon.py index f45131d3..15ce5a41 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.95" +version = "0.9.96" ########################################################## diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 3ecfeeef..c5e68f6e 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.95" +version = "0.9.96" ########################################################## diff --git a/worker-daemon/pvcworkerd/Daemon.py b/worker-daemon/pvcworkerd/Daemon.py index d85b8768..a3e99b56 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.95" +version = "0.9.96" config = cfg.get_configuration()