From 8cb44c0c5d675dde098cce88970e198332796fb8 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 30 Aug 2024 11:03:33 -0400 Subject: [PATCH] Bump version to 0.9.100 --- .version | 2 +- CHANGELOG.md | 6 ++++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 8 ++++++++ health-daemon/pvchealthd/Daemon.py | 2 +- node-daemon/pvcnoded/Daemon.py | 2 +- worker-daemon/pvcworkerd/Daemon.py | 2 +- 8 files changed, 20 insertions(+), 6 deletions(-) diff --git a/.version b/.version index bbae951e..740d4f03 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.99 +0.9.100 diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a862afc..fcdab374 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ## PVC Changelog +###### [v0.9.100](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.100) + + * [API Daemon] Improves the handling of "detect:" disk strings on newer systems by leveraging the "nvme" command + * [Client CLI] Update help text about "detect:" disk strings + * [Meta] Updates deprecation warnings and updates builder to only add this version for Debian 12 (Bookworm) + ###### [v0.9.99](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.99) **Deprecation Warning**: `pvc vm backup` commands are now deprecated and will be removed in a future version. Use `pvc vm snapshot` commands instead. diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 107fd106..d42f2001 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.99" +version = "0.9.100" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 0e8007b0..b8aa4599 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.99", + version="0.9.100", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 561c599e..37b5296d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +pvc (0.9.100-0) unstable; urgency=high + + * [API Daemon] Improves the handling of "detect:" disk strings on newer systems by leveraging the "nvme" command + * [Client CLI] Update help text about "detect:" disk strings + * [Meta] Updates deprecation warnings and updates builder to only add this version for Debian 12 (Bookworm) + + -- Joshua M. Boniface Fri, 30 Aug 2024 11:03:33 -0400 + pvc (0.9.99-0) unstable; urgency=high **Deprecation Warning**: `pvc vm backup` commands are now deprecated and will be removed in **0.9.100**. Use `pvc vm snapshot` commands instead. diff --git a/health-daemon/pvchealthd/Daemon.py b/health-daemon/pvchealthd/Daemon.py index a1d438f7..312e4dd6 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.99" +version = "0.9.100" ########################################################## diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 915d5993..4ffe7c40 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.99" +version = "0.9.100" ########################################################## diff --git a/worker-daemon/pvcworkerd/Daemon.py b/worker-daemon/pvcworkerd/Daemon.py index 3c2ae049..173752f9 100755 --- a/worker-daemon/pvcworkerd/Daemon.py +++ b/worker-daemon/pvcworkerd/Daemon.py @@ -52,7 +52,7 @@ from daemon_lib.autobackup import ( ) # Daemon version -version = "0.9.99" +version = "0.9.100" config = cfg.get_configuration()