From f13cc04b891f4e45b8bfe8cd801b634368bbd740 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sat, 9 Oct 2021 19:39:21 -0400 Subject: [PATCH] Bump version to 0.9.41 --- .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 f81283f3..6e25cd61 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.40 +0.9.41 diff --git a/CHANGELOG.md b/CHANGELOG.md index ca6ed659..2643aaab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## PVC Changelog +###### [v0.9.41](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.41) + + * Fixes a bad conditional check in IPMI verification + * Implements per-network MTU configuration; NOTE: Requires new keys in pvcnoded.yaml (`bridge_mtu`) and Ansible group_vars (`pvc_bridge_mtu`) + ###### [v0.9.40](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.40) * [Docs] Documentation updates for new Changelog file diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 375a7601..fc16901b 100755 --- a/api-daemon/pvcapid/Daemon.py +++ b/api-daemon/pvcapid/Daemon.py @@ -25,7 +25,7 @@ import yaml from distutils.util import strtobool as dustrtobool # Daemon version -version = '0.9.40' +version = '0.9.41' # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index a2360f82..7ffcab75 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.40', + version='0.9.41', packages=['pvc', 'pvc.cli_lib'], install_requires=[ 'Click', diff --git a/debian/changelog b/debian/changelog index 4b9aee5d..df8fa2f4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +pvc (0.9.41-0) unstable; urgency=high + + * Fixes a bad conditional check in IPMI verification + * Implements per-network MTU configuration; NOTE: Requires new keys in pvcnoded.yaml (`bridge_mtu`) and Ansible group_vars (`pvc_bridge_mtu`) + + -- Joshua M. Boniface Sat, 09 Oct 2021 19:39:21 -0400 + pvc (0.9.40-0) unstable; urgency=high * [Docs] Documentation updates for new Changelog file diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 17f239f7..0e6f7cfa 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -48,7 +48,7 @@ import re import json # Daemon version -version = '0.9.40' +version = '0.9.41' ##########################################################