diff --git a/.version b/.version index 8d403e3a..d3b54211 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.44 +0.9.45 diff --git a/CHANGELOG.md b/CHANGELOG.md index d32853c2..e6aa970b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## PVC Changelog +###### [v0.9.45](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.45) + + * [Node Daemon] Fixes an ordering issue with pvcnoded.service + * [CLI Client] Fixes bad calls to echo() without argument + ###### [v0.9.44](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.44) * [Node Daemon] Adds a Munin plugin for Ceph utilization diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index dbc98e26..d0ccbc00 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.44" +version = "0.9.45" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 5d7ac93c..30f03632 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.44", + version="0.9.45", packages=["pvc", "pvc.cli_lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index d81e4a5b..c42fb3f9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +pvc (0.9.45-0) unstable; urgency=high + + * [Node Daemon] Fixes an ordering issue with pvcnoded.service + * [CLI Client] Fixes bad calls to echo() without argument + + -- Joshua M. Boniface Thu, 25 Nov 2021 09:34:20 -0500 + pvc (0.9.44-0) unstable; urgency=high * [Node Daemon] Adds a Munin plugin for Ceph utilization diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index d506bf89..023be56f 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.44" +version = "0.9.45" ##########################################################