From 7c0f12750e017b450a14357d34a2ee138b5588b2 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Tue, 19 Sep 2023 11:05:55 -0400 Subject: [PATCH] Bump version to 0.9.77 --- .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 8667f8a0..1b525aba 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.76 +0.9.77 diff --git a/CHANGELOG.md b/CHANGELOG.md index ae40fd3b..b829deee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## PVC Changelog +###### [v0.9.77](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.77) + + * [Client CLI] Fixes a bug from a bad library import + ###### [v0.9.76](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.76) * [API, Client CLI] Corrects some missing node states for fencing in status output diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index bb1d53f3..5aabfe14 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.76" +version = "0.9.77" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index a13cacd5..4fa92aa6 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.76", + version="0.9.77", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index e0c2fd11..e9bac61c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pvc (0.9.77-0) unstable; urgency=high + + * [Client CLI] Fixes a bug from a bad library import + + -- Joshua M. Boniface Tue, 19 Sep 2023 11:05:55 -0400 + pvc (0.9.76-0) unstable; urgency=high * [API, Client CLI] Corrects some missing node states for fencing in status output diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index dfbba2f2..6e9bff02 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.76" +version = "0.9.77" ##########################################################