From f46bfc962fc747b32907c98a9f949781f52a34b6 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sat, 16 Sep 2023 23:06:38 -0400 Subject: [PATCH] Bump version to 0.9.75 --- .version | 2 +- CHANGELOG.md | 6 ++++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 8 ++++++++ node-daemon/pvcnoded/Daemon.py | 2 +- 6 files changed, 18 insertions(+), 4 deletions(-) diff --git a/.version b/.version index 1855740f..dda19333 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.74 +0.9.75 diff --git a/CHANGELOG.md b/CHANGELOG.md index c1ac9c06..d73234e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ## PVC Changelog +###### [v0.9.75](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.75) + + * [Node Daemon] Adds a startup message about IPMI when succeeding + * [Node Daemon] Fixes a bug in fencing allowing non-failing VMs to migrate + * [Node Daemon] Adds rounding to load average in load plugin for consistency + ###### [v0.9.74](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.74) * [Docs] Removes docs from the main repo diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index f7b3c59b..ad72bf97 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.74" +version = "0.9.75" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index db19f51f..68a1fbdf 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.74", + version="0.9.75", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 85dfcd53..55a90c59 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +pvc (0.9.75-0) unstable; urgency=high + + * [Node Daemon] Adds a startup message about IPMI when succeeding + * [Node Daemon] Fixes a bug in fencing allowing non-failing VMs to migrate + * [Node Daemon] Adds rounding to load average in load plugin for consistency + + -- Joshua M. Boniface Sat, 16 Sep 2023 23:06:38 -0400 + pvc (0.9.74-0) unstable; urgency=high * [Docs] Removes docs from the main repo diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 7678a649..a4ca385c 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.74" +version = "0.9.75" ##########################################################