From fdda47e8a206d47eea884c1b15dd261e837f4841 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 1 Sep 2023 16:34:45 -0400 Subject: [PATCH] Bump version to 0.9.72 --- .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 8d93e484..90112002 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.71 +0.9.72 diff --git a/CHANGELOG.md b/CHANGELOG.md index 19f16c71..4fbee642 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## PVC Changelog +###### [v0.9.72](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.72) + + * [CLI] Restores old functionality for default node value + ###### [v0.9.71](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.71) * [API] Adds API support for Debian Bookworm diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 3d3cf8f5..e33c2b77 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.71" +version = "0.9.72" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 189f1c5a..76ccfc07 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.71", + version="0.9.72", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index c00ac584..e48f1765 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pvc (0.9.72-0) unstable; urgency=high + + * [CLI] Restores old functionality for default node value + + -- Joshua M. Boniface Fri, 01 Sep 2023 16:34:45 -0400 + pvc (0.9.71-0) unstable; urgency=high * [API] Adds API support for Debian Bookworm diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index e36ad5ef..b063446e 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.71" +version = "0.9.72" ##########################################################