diff --git a/.version b/.version index 03b4c752..a75b09ef 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.50 +0.9.51 diff --git a/CHANGELOG.md b/CHANGELOG.md index 1eb87ea8..66310b2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ## PVC Changelog +###### [v0.9.51](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.51) + + * [CLI Client] Fixes a faulty literal_eval when viewing task status + * [CLI Client] Adds a confirmation flag to the vm disable command + * [Node Daemon] Removes the pvc-flush service + ###### [v0.9.50](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.50) * [Node Daemon/API/CLI] Adds free memory node selector diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 65d70fdf..3eaa4f70 100755 --- a/api-daemon/pvcapid/Daemon.py +++ b/api-daemon/pvcapid/Daemon.py @@ -25,7 +25,7 @@ import yaml from distutils.util import strtobool as dustrtobool # Daemon version -version = "0.9.50" +version = "0.9.51" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 7b9c256f..a156aab6 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.50", + version="0.9.51", packages=["pvc", "pvc.cli_lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 71c45f72..733b5a4f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +pvc (0.9.51-0) unstable; urgency=high + + * [CLI Client] Fixes a faulty literal_eval when viewing task status + * [CLI Client] Adds a confirmation flag to the vm disable command + * [Node Daemon] Removes the pvc-flush service + + -- Joshua M. Boniface Mon, 25 Jul 2022 23:25:41 -0400 + pvc (0.9.50-0) unstable; urgency=high * [Node Daemon/API/CLI] Adds free memory node selector diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 00252dc3..6b1a3dbf 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.50" +version = "0.9.51" ##########################################################