diff --git a/.version b/.version index 90112002..a1e00f49 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.72 +0.9.73 diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fbee642..259d1432 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## PVC Changelog +###### [v0.9.73](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.73) + + * [Node Daemon] Fixes a bug creating monitoring instance + ###### [v0.9.72](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.72) * [CLI] Restores old functionality for default node value diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index e33c2b77..8ffa9495 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.72" +version = "0.9.73" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 76ccfc07..cafdf072 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.72", + version="0.9.73", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index e48f1765..462b9625 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pvc (0.9.73-0) unstable; urgency=high + + * [Node Daemon] Fixes a bug creating monitoring instance + + -- Joshua M. Boniface Sat, 02 Sep 2023 02:16:19 -0400 + pvc (0.9.72-0) unstable; urgency=high * [CLI] Restores old functionality for default node value diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index b063446e..b0945140 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -49,7 +49,7 @@ import re import json # Daemon version -version = "0.9.72" +version = "0.9.73" ##########################################################