diff --git a/.version b/.version index d51d2518..6c94f377 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.58 +0.9.59 diff --git a/CHANGELOG.md b/CHANGELOG.md index 609888f5..ad3ac379 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## PVC Changelog +###### [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 + ###### [v0.9.58](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.58) * [API] Fixes a bug where migration selector could have case-sensitive operational faults diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 528f8257..32307767 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.58" +version = "0.9.59" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index eda87d93..a57f921c 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.58", + version="0.9.59", packages=["pvc", "pvc.cli_lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index b69d2c84..6ca72830 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +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 + + -- Joshua M. Boniface Tue, 15 Nov 2022 15:50:15 -0500 + pvc (0.9.58-0) unstable; urgency=high * [API] Fixes a bug where migration selector could have case-sensitive operational faults diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index b13237a1..d499439c 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.58" +version = "0.9.59" ##########################################################