diff --git a/.version b/.version index f1753b31..129a8634 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.94 +0.9.95 diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fe9dcf3..b541c367 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ## PVC Changelog +###### [v0.9.95](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.95) + + * [API Daemon/CLI Client] Adds a flag to allow duplicate VNIs in network templates + * [API Daemon] Ensures that storage template disks are returned in disk ID order + * [Client CLI] Fixes a display bug showing all OSDs as split + ###### [v0.9.94](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.94) * [CLI Client] Fixes an incorrect ordering issue with autobackup summary emails diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 71044806..0dd7c8e2 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.94" +version = "0.9.95" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 8d8cb207..57e76d5e 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.94", + version="0.9.95", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index fb4054b7..27f09518 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +pvc (0.9.95-0) unstable; urgency=high + + * [API Daemon/CLI Client] Adds a flag to allow duplicate VNIs in network templates + * [API Daemon] Ensures that storage template disks are returned in disk ID order + * [Client CLI] Fixes a display bug showing all OSDs as split + + -- Joshua M. Boniface Fri, 09 Feb 2024 12:42:00 -0500 + pvc (0.9.94-0) unstable; urgency=high * [CLI Client] Fixes an incorrect ordering issue with autobackup summary emails diff --git a/health-daemon/pvchealthd/Daemon.py b/health-daemon/pvchealthd/Daemon.py index ccc007cf..f45131d3 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.94" +version = "0.9.95" ########################################################## diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 70162d4e..3ecfeeef 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.94" +version = "0.9.95" ########################################################## diff --git a/worker-daemon/pvcworkerd/Daemon.py b/worker-daemon/pvcworkerd/Daemon.py index 584432ac..d85b8768 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.94" +version = "0.9.95" config = cfg.get_configuration()