From 1aa59991090d9fbfbcfd2e8931ed048f8dc6b502 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 5 Jun 2024 12:01:31 -0400 Subject: [PATCH] Bump version to 0.9.98 --- .version | 2 +- CHANGELOG.md | 9 +++++++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 11 +++++++++++ health-daemon/pvchealthd/Daemon.py | 2 +- node-daemon/pvcnoded/Daemon.py | 2 +- worker-daemon/pvcworkerd/Daemon.py | 2 +- 8 files changed, 26 insertions(+), 6 deletions(-) diff --git a/.version b/.version index 70efdc49..2fe6b448 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.97 +0.9.98 diff --git a/CHANGELOG.md b/CHANGELOG.md index 557d9b47..294e872c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ ## PVC Changelog +###### [v0.9.98](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.98) + + * [CLI Client] Fixed output when API call times out + * [Node Daemon] Improves the handling of fence states + * [API Daemon/CLI Client] Adds support for storage snapshot rollback + * [CLI Client] Adds additional warning messages about snapshot consistency to help output + * [API Daemon] Fixes a bug listing snapshots by pool/volume + * [Node Daemon] Adds a --version flag for information gathering by update-motd.sh + ###### [v0.9.97](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.97) * [Client CLI] Ensures --lines is always an integer value diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 1635a30e..f255466a 100755 --- a/api-daemon/pvcapid/Daemon.py +++ b/api-daemon/pvcapid/Daemon.py @@ -27,7 +27,7 @@ from distutils.util import strtobool as dustrtobool import daemon_lib.config as cfg # Daemon version -version = "0.9.97" +version = "0.9.98" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index c277c532..8d53fd76 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.97", + version="0.9.98", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index ca87cf04..8f9826f6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +pvc (0.9.98-0) unstable; urgency=high + + * [CLI Client] Fixed output when API call times out + * [Node Daemon] Improves the handling of fence states + * [API Daemon/CLI Client] Adds support for storage snapshot rollback + * [CLI Client] Adds additional warning messages about snapshot consistency to help output + * [API Daemon] Fixes a bug listing snapshots by pool/volume + * [Node Daemon] Adds a --version flag for information gathering by update-motd.sh + + -- Joshua M. Boniface Wed, 05 Jun 2024 12:01:31 -0400 + pvc (0.9.97-0) unstable; urgency=high * [Client CLI] Ensures --lines is always an integer value diff --git a/health-daemon/pvchealthd/Daemon.py b/health-daemon/pvchealthd/Daemon.py index 3c94d8a5..aea7112e 100644 --- a/health-daemon/pvchealthd/Daemon.py +++ b/health-daemon/pvchealthd/Daemon.py @@ -33,7 +33,7 @@ import os import signal # Daemon version -version = "0.9.97" +version = "0.9.98" ########################################################## diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index a9ac1686..35002abb 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.97" +version = "0.9.98" ########################################################## diff --git a/worker-daemon/pvcworkerd/Daemon.py b/worker-daemon/pvcworkerd/Daemon.py index 00b1aa66..362d926e 100755 --- a/worker-daemon/pvcworkerd/Daemon.py +++ b/worker-daemon/pvcworkerd/Daemon.py @@ -44,7 +44,7 @@ from daemon_lib.vmbuilder import ( ) # Daemon version -version = "0.9.97" +version = "0.9.98" config = cfg.get_configuration()