Bump version to 0.9.80

This commit is contained in:
Joshua Boniface 2023-10-27 09:56:31 -04:00
parent 2fccbcda89
commit 5b4dd61754
6 changed files with 22 additions and 4 deletions

View File

@ -1 +1 @@
0.9.79
0.9.80

View File

@ -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

View File

@ -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

View File

@ -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",

10
debian/changelog vendored
View File

@ -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 <joshua@boniface.me> 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

View File

@ -49,7 +49,7 @@ import re
import json
# Daemon version
version = "0.9.79"
version = "0.9.80"
##########################################################