diff --git a/.version b/.version index 6c94f377..843b8c23 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.59 +0.9.60 diff --git a/CHANGELOG.md b/CHANGELOG.md index ad3ac379..dee01ae3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## PVC Changelog +###### [v0.9.60](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.60) + + * [Provisioner] Cleans up several remaining bugs in the example scripts; they should all be valid now + * [Provisioner] Adjust default libvirt schema to disable RBD caching for a 2x+ performance boost + ###### [v0.9.59](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.59) * [API] Flips the mem(prov) and mem(free) selectors making mem(free) the default for "mem" and "memprov" explicit diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 32307767..aaabe322 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.59" +version = "0.9.60" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index a57f921c..94e26d64 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.59", + version="0.9.60", packages=["pvc", "pvc.cli_lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 6ca72830..0e0a3663 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +pvc (0.9.60-0) unstable; urgency=high + + * [Provisioner] Cleans up several remaining bugs in the example scripts; they should all be valid now + * [Provisioner] Adjust default libvirt schema to disable RBD caching for a 2x+ performance boost + + -- Joshua M. Boniface Tue, 06 Dec 2022 15:42:55 -0500 + pvc (0.9.59-0) unstable; urgency=high * [API] Flips the mem(prov) and mem(free) selectors making mem(free) the default for "mem" and "memprov" explicit diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index d499439c..0d083a33 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -48,7 +48,7 @@ import re import json # Daemon version -version = "0.9.59" +version = "0.9.60" ##########################################################