From f1df1cfe93f8fcffc4744c44762ee9166926a43a Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Tue, 4 Oct 2022 13:21:40 -0400 Subject: [PATCH] Bump version to 0.9.55 --- .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 7d09030c..9f065fa5 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.54 +0.9.55 diff --git a/CHANGELOG.md b/CHANGELOG.md index 750e6123..72eb4ed4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## PVC Changelog +###### [v0.9.55](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.55) + + * Fixes a problem with the literal eval handler in the provisioner (again) + * Fixes a potential log deadlock in Zookeeper-lost situations when doing keepalives + ###### [v0.9.54](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.54) [CLI Client] Fixes a bad variable reference from the previous change diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 5441b375..794f1238 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.54" +version = "0.9.55" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index af977dac..16199287 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.54", + version="0.9.55", packages=["pvc", "pvc.cli_lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 3fedd6ae..d624712b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +pvc (0.9.55-0) unstable; urgency=high + + * Fixes a problem with the literal eval handler in the provisioner (again) + * Fixes a potential log deadlock in Zookeeper-lost situations when doing keepalives + + -- Joshua M. Boniface Tue, 04 Oct 2022 13:21:40 -0400 + pvc (0.9.54-0) unstable; urgency=high [CLI Client] Fixes a bad variable reference from the previous change diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 8759e2a8..80a7bdcc 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.54" +version = "0.9.55" ##########################################################