From bb2aac145d08a9907de74fded652020845389280 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 1 Sep 2023 00:36:38 -0400 Subject: [PATCH] Bump version to 0.9.71 --- .version | 2 +- CHANGELOG.md | 4 ++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 6 ++++++ node-daemon/pvcnoded/Daemon.py | 2 +- 6 files changed, 14 insertions(+), 4 deletions(-) diff --git a/.version b/.version index fd0237f0..8d93e484 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.70 +0.9.71 diff --git a/CHANGELOG.md b/CHANGELOG.md index f2785ff6..19f16c71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## PVC Changelog +###### [v0.9.71](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.71) + + * [API] Adds API support for Debian Bookworm + ###### [v0.9.70](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.70) * [Node Daemon] Fixes several compatibility issues for Debian 12 "Bookworm" diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index daa1f0bf..3d3cf8f5 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.70" +version = "0.9.71" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 54979d8b..189f1c5a 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.70", + version="0.9.71", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 3b7c8073..c00ac584 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pvc (0.9.71-0) unstable; urgency=high + + * [API] Adds API support for Debian Bookworm + + -- Joshua M. Boniface Fri, 01 Sep 2023 00:30:42 -0400 + pvc (0.9.70-0) unstable; urgency=high * [Node Daemon] Fixes several compatibility issues for Debian 12 "Bookworm" diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 1e0ab905..e36ad5ef 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.70" +version = "0.9.71" ##########################################################