diff --git a/.version b/.version index 899b174a..5283cfcf 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.105 +0.9.106 diff --git a/CHANGELOG.md b/CHANGELOG.md index 23774e69..14c4736d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## PVC Changelog +###### [v0.9.106](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.106) + + * [API Daemon] Fixes a calculation bug when checking storage free space + ###### [v0.9.105](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.105) * [API Daemon/Provisioner] Corrects some small bugs with OVA handling diff --git a/client-cli/setup.py b/client-cli/setup.py index 2e5d2fd8..9c060466 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.105", + version="0.9.106", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index ece5bcae..97f7937d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pvc (0.9.106-0) unstable; urgency=high + + * [API Daemon] Fixes a calculation bug when checking storage free space + + -- Joshua M. Boniface Mon, 09 Dec 2024 16:45:10 -0500 + pvc (0.9.105-0) unstable; urgency=high * [API Daemon/Provisioner] Corrects some small bugs with OVA handling diff --git a/health-daemon/pvchealthd/Daemon.py b/health-daemon/pvchealthd/Daemon.py index 971290df..9a5dbec5 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.105" +version = "0.9.106" ########################################################## diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index a37e6e8b..61a2072d 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.105" +version = "0.9.106" ########################################################## diff --git a/worker-daemon/pvcworkerd/Daemon.py b/worker-daemon/pvcworkerd/Daemon.py index 3ba1dca8..5e502c27 100755 --- a/worker-daemon/pvcworkerd/Daemon.py +++ b/worker-daemon/pvcworkerd/Daemon.py @@ -58,7 +58,7 @@ from daemon_lib.automirror import ( ) # Daemon version -version = "0.9.105" +version = "0.9.106" config = cfg.get_configuration()