diff --git a/.version b/.version index ca6f47fe..91bd0986 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.86 +0.9.87 diff --git a/CHANGELOG.md b/CHANGELOG.md index 68c8df40..404baca3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ ## PVC Changelog +###### [v0.9.87](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.87) + + * [API Daemon] Adds cluster Prometheus resource utilization metrics and an updated Grafana dashboard. + * [Node Daemon] Adds network traffic rate calculation subsystem. + * [All Daemons] Fixes a printing bug where newlines were not added atomically. + * [CLI Client] Fixes a bug listing connections if no default is specified. + * [All Daemons] Simplifies debug logging conditionals by moving into the Logger instance itself. + ###### [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. diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 64592303..c9dd60e1 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.86" +version = "0.9.87" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 54435b09..10ec466d 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.86", + version="0.9.87", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index b63a914e..32c93435 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +pvc (0.9.87-0) unstable; urgency=high + + * [API Daemon] Adds cluster Prometheus resource utilization metrics and an updated Grafana dashboard. + * [Node Daemon] Adds network traffic rate calculation subsystem. + * [All Daemons] Fixes a printing bug where newlines were not added atomically. + * [CLI Client] Fixes a bug listing connections if no default is specified. + * [All Daemons] Simplifies debug logging conditionals by moving into the Logger instance itself. + + -- Joshua M. Boniface Wed, 27 Dec 2023 13:40:51 -0500 + 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. diff --git a/health-daemon/pvchealthd/Daemon.py b/health-daemon/pvchealthd/Daemon.py index 96755e04..f0337ddf 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.86" +version = "0.9.87" ########################################################## diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index c638d235..8b6603e1 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.86" +version = "0.9.87" ########################################################## diff --git a/worker-daemon/pvcworkerd/Daemon.py b/worker-daemon/pvcworkerd/Daemon.py index 3edf7f1d..1d257301 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.86" +version = "0.9.87" config = cfg.get_configuration()