diff --git a/.version b/.version index 3f566c9f..70efdc49 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.96 +0.9.97 diff --git a/CHANGELOG.md b/CHANGELOG.md index 67ea2054..dda5b831 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ## PVC Changelog +###### [v0.9.97](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.97) + + * [Client CLI] Ensures --lines is always an integer value + * [Node Daemon] Fixes a bug if d_network changes during iteration + * [Node Daemon] Moves to using allocated instead of free memory for node reporting + ###### [v0.9.96](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.96) * [API Daemon] Fixes a bug when reporting node stats diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 6862bad9..1635a30e 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.96" +version = "0.9.97" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 0fdc8ddf..c277c532 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.96", + version="0.9.97", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 2c2e72b0..fba7c8ca 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +pvc (0.9.97-0) unstable; urgency=high + + * [Client CLI] Ensures --lines is always an integer value + * [Node Daemon] Fixes a bug if d_network changes during iteration + * [Node Daemon] Moves to using allocated instead of free memory for node reporting + + -- Joshua M. Boniface Fri, 19 Apr 2024 10:27:33 -0400 + pvc (0.9.96-0) unstable; urgency=high * [API Daemon] Fixes a bug when reporting node stats diff --git a/health-daemon/pvchealthd/Daemon.py b/health-daemon/pvchealthd/Daemon.py index 15ce5a41..3c94d8a5 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.96" +version = "0.9.97" ########################################################## diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index c5e68f6e..a9ac1686 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.96" +version = "0.9.97" ########################################################## diff --git a/worker-daemon/pvcworkerd/Daemon.py b/worker-daemon/pvcworkerd/Daemon.py index a3e99b56..00b1aa66 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.96" +version = "0.9.97" config = cfg.get_configuration()