diff --git a/.version b/.version index 054459d1..8d403e3a 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.43 +0.9.44 diff --git a/CHANGELOG.md b/CHANGELOG.md index fef137fe..d32853c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ ## PVC Changelog +###### [v0.9.44](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.44) + + * [Node Daemon] Adds a Munin plugin for Ceph utilization + * [CLI] Fixes timeouts for long-running API commands + +###### [v0.9.44](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.44) + + * [CLI] Fixes timeout issues with long-running API commands + ###### [v0.9.43](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.43) * [Packaging] Fixes a bad test in postinst diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index cdb1b8c1..dbc98e26 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.43" +version = "0.9.44" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 4306e485..5d7ac93c 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.43", + version="0.9.44", packages=["pvc", "pvc.cli_lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index f16784b0..d81e4a5b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +pvc (0.9.44-0) unstable; urgency=high + + * [Node Daemon] Adds a Munin plugin for Ceph utilization + * [CLI] Fixes timeouts for long-running API commands + + -- Joshua M. Boniface Thu, 11 Nov 2021 16:20:38 -0500 + +pvc (0.9.44-0) unstable; urgency=high + + * [CLI] Fixes timeout issues with long-running API commands + + -- Joshua M. Boniface Thu, 11 Nov 2021 16:19:32 -0500 + pvc (0.9.43-0) unstable; urgency=high * [Packaging] Fixes a bad test in postinst diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 70fd3aea..d506bf89 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.43" +version = "0.9.44" ##########################################################