From 239c39289277f88547c0dd2bf873678be059a0a8 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Tue, 23 Aug 2022 11:01:05 -0400 Subject: [PATCH] Bump version to 0.9.54 --- .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 40f18010..7d09030c 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.53 +0.9.54 diff --git a/CHANGELOG.md b/CHANGELOG.md index eeff14cc..750e6123 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## PVC Changelog +###### [v0.9.54](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.54) + +[CLI Client] Fixes a bad variable reference from the previous change +[API Daemon] Enables TLSv1 with an SSLContext object for maximum compatibility + ###### [v0.9.53](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.53) * [API] Fixes sort order of VM list (for real this time) diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 4e36ddd6..5441b375 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.53" +version = "0.9.54" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index e1840804..af977dac 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.53", + version="0.9.54", packages=["pvc", "pvc.cli_lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index d3118a54..3fedd6ae 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +pvc (0.9.54-0) unstable; urgency=high + +[CLI Client] Fixes a bad variable reference from the previous change +[API Daemon] Enables TLSv1 with an SSLContext object for maximum compatibility + + -- Joshua M. Boniface Tue, 23 Aug 2022 11:01:05 -0400 + pvc (0.9.53-0) unstable; urgency=high * [API] Fixes sort order of VM list (for real this time) diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 26a23c6e..8759e2a8 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.53" +version = "0.9.54" ##########################################################