diff --git a/.version b/.version index a9f55eac..fd0237f0 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.69 +0.9.70 diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f86b27b..f2785ff6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## PVC Changelog +###### [v0.9.70](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.70) + + * [Node Daemon] Fixes several compatibility issues for Debian 12 "Bookworm" + ###### [v0.9.69](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.69) * [Node Daemon] Ensures that system load is always 2 decimal places on Bookworm diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 0869daaa..daa1f0bf 100755 --- a/api-daemon/pvcapid/Daemon.py +++ b/api-daemon/pvcapid/Daemon.py @@ -27,7 +27,7 @@ from ssl import SSLContext, TLSVersion from distutils.util import strtobool as dustrtobool # Daemon version -version = "0.9.69" +version = "0.9.70" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 3b4feb88..54979d8b 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.69", + version="0.9.70", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index a4f99248..3b7c8073 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pvc (0.9.70-0) unstable; urgency=high + + * [Node Daemon] Fixes several compatibility issues for Debian 12 "Bookworm" + + -- Joshua M. Boniface Thu, 31 Aug 2023 14:15:54 -0400 + pvc (0.9.69-0) unstable; urgency=high * [Node Daemon] Ensures that system load is always 2 decimal places on Bookworm diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 14217bab..1e0ab905 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.69" +version = "0.9.70" ##########################################################