From 45ad3b9a17ae718a542ad175e7c06317bccec8de Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 22 Feb 2023 18:13:45 -0500 Subject: [PATCH] Bump version to 0.9.62 --- .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 848cc0cb..9a5fe00a 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.61 +0.9.62 diff --git a/CHANGELOG.md b/CHANGELOG.md index 735cdaa7..2e98c127 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## PVC Changelog +###### [v0.9.62](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.62) + + * [all] Adds an enhanced health checking, monitoring, and reporting system for nodes and clusters + * [cli] Adds a cluster detail command + ###### [v0.9.61](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.61) * [provisioner] Fixes a bug in network comparison diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 33b71c7a..f11d040f 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.61" +version = "0.9.62" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 650c53a1..ae4fe810 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.61", + version="0.9.62", packages=["pvc", "pvc.cli_lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index d4a62eaa..25469a31 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +pvc (0.9.62-0) unstable; urgency=high + + * [all] Adds an enhanced health checking, monitoring, and reporting system for nodes and clusters + * [cli] Adds a cluster detail command + + -- Joshua M. Boniface Wed, 22 Feb 2023 18:13:45 -0500 + pvc (0.9.61-0) unstable; urgency=high * [provisioner] Fixes a bug in network comparison diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index a7974237..290bc4a9 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.61" +version = "0.9.62" ##########################################################