From 51e78480fa112921b32cd2e307284af0e2e1e55a Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 18 Sep 2023 10:15:52 -0400 Subject: [PATCH] Bump version to 0.9.76 --- .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 dda19333..8667f8a0 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.75 +0.9.76 diff --git a/CHANGELOG.md b/CHANGELOG.md index d73234e2..ae40fd3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## PVC Changelog +###### [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 + ###### [v0.9.75](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.75) * [Node Daemon] Adds a startup message about IPMI when succeeding diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index ad72bf97..bb1d53f3 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.75" +version = "0.9.76" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 68a1fbdf..a13cacd5 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.75", + version="0.9.76", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 55a90c59..e0c2fd11 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pvc (0.9.76-0) unstable; urgency=high + + * [API, Client CLI] Corrects some missing node states for fencing in status output + + -- Joshua M. Boniface Mon, 18 Sep 2023 10:15:52 -0400 + pvc (0.9.75-0) unstable; urgency=high * [Node Daemon] Adds a startup message about IPMI when succeeding diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index a4ca385c..dfbba2f2 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.75" +version = "0.9.76" ##########################################################