diff --git a/.version b/.version index 937cf1cb..5266e119 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.79 +0.9.80 diff --git a/CHANGELOG.md b/CHANGELOG.md index fa6eca3d..bd6d542d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ ## PVC Changelog +###### [v0.9.80](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.80) + + * [CLI] Improves CLI performance by not loading "pkg_resources" until needed + * [CLI] Improves the output of the audit log (full command paths) + * [Node Daemon/API Daemon] Moves the sample YAML configurations to /usr/share/pvc instead of /etc/pvc and cleans up the old locations automatically + * [CLI] Adds VM autobackup functionality to automate VM backup/retention and scheduling + * [CLI] Handles the internal store in a better way to ensure CLI can be used as a module properly + ###### [v0.9.79](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.79) **API Changes**: New endpoints /vm/{vm}/backup, /vm/{vm}/restore diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index b9461705..2429d98a 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.79" +version = "0.9.80" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 15e367ab..2889f8fe 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.79", + version="0.9.80", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 3b8e67a4..9b75094a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +pvc (0.9.80-0) unstable; urgency=high + + * [CLI] Improves CLI performance by not loading "pkg_resources" until needed + * [CLI] Improves the output of the audit log (full command paths) + * [Node Daemon/API Daemon] Moves the sample YAML configurations to /usr/share/pvc instead of /etc/pvc and cleans up the old locations automatically + * [CLI] Adds VM autobackup functionality to automate VM backup/retention and scheduling + * [CLI] Handles the internal store in a better way to ensure CLI can be used as a module properly + + -- Joshua M. Boniface Fri, 27 Oct 2023 09:56:31 -0400 + pvc (0.9.79-0) unstable; urgency=high **API Changes**: New endpoints /vm/{vm}/backup, /vm/{vm}/restore diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 7970c1bf..ea068e3e 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.79" +version = "0.9.80" ##########################################################