From 095bcb237337bfb9baa12b81d5e3426df1041147 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 7 Nov 2022 12:27:48 -0500 Subject: [PATCH] Bump version to 0.9.58 --- .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 77663768..d51d2518 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.57 +0.9.58 diff --git a/CHANGELOG.md b/CHANGELOG.md index 00f09bcf..609888f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## PVC Changelog +###### [v0.9.58](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.58) + + * [API] Fixes a bug where migration selector could have case-sensitive operational faults + ###### [v0.9.57](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.57) * [CLI] Removes an invalid reference to VXLAN diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 685cbb56..528f8257 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.57" +version = "0.9.58" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index d580086f..eda87d93 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.57", + version="0.9.58", packages=["pvc", "pvc.cli_lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index acca7ffc..b69d2c84 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pvc (0.9.58-0) unstable; urgency=high + + * [API] Fixes a bug where migration selector could have case-sensitive operational faults + + -- Joshua M. Boniface Mon, 07 Nov 2022 12:27:48 -0500 + pvc (0.9.57-0) unstable; urgency=high * [CLI] Removes an invalid reference to VXLAN diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 233dec22..b13237a1 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.57" +version = "0.9.58" ##########################################################