From 1e083d7652610db46043957500167cf5b7f6ef25 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 23 Aug 2023 01:56:57 -0400 Subject: [PATCH] Bump version to 0.9.65 --- .version | 2 +- CHANGELOG.md | 5 +++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 7 +++++++ node-daemon/pvcnoded/Daemon.py | 2 +- 6 files changed, 16 insertions(+), 4 deletions(-) diff --git a/.version b/.version index b1da1849..b64934d2 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.64 +0.9.65 diff --git a/CHANGELOG.md b/CHANGELOG.md index 51fcf83c..5549c7fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## PVC Changelog +###### [v0.9.65](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.65) + + * [CLI] Fixes a bug in the node list filtering command + * [CLI] Fixes a bug/default when no connection is specified + ###### [v0.9.64](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.64) **Breaking Change [CLI]**: The CLI client root commands have been reorganized. The following commands have changed: diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index bccab56f..394b09e9 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.64" +version = "0.9.65" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 58d5e3b0..e5b079e7 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.64", + version="0.9.65", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index e961a9fc..682915eb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +pvc (0.9.65-0) unstable; urgency=high + + * [CLI] Fixes a bug in the node list filtering command + * [CLI] Fixes a bug/default when no connection is specified + + -- Joshua M. Boniface Wed, 23 Aug 2023 01:56:57 -0400 + pvc (0.9.64-0) unstable; urgency=high **Breaking Change [CLI]**: The CLI client root commands have been reorganized. The following commands have changed: diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 59fa1c15..e9ea2644 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.64" +version = "0.9.65" ##########################################################