diff --git a/.version b/.version index 9a5fe00a..ca31e917 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.62 +0.9.63 diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e98c127..52d1a60d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ ## PVC Changelog +###### [v0.9.63](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.63) + + * Mentions Ganeti in the docs + * Increases API timeout back to 2s + * Adds .update-* configs to dpkg plugin + * Adds full/nearfull OSD warnings + * Improves size value handling for volumes + ###### [v0.9.62](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.62) * [all] Adds an enhanced health checking, monitoring, and reporting system for nodes and clusters diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index f11d040f..c7cc6742 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.62" +version = "0.9.63" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index ae4fe810..88792b97 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.62", + version="0.9.63", packages=["pvc", "pvc.cli_lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 25469a31..64b50ad7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +pvc (0.9.63-0) unstable; urgency=high + + * Mentions Ganeti in the docs + * Increases API timeout back to 2s + * Adds .update-* configs to dpkg plugin + * Adds full/nearfull OSD warnings + * Improves size value handling for volumes + + -- Joshua M. Boniface Fri, 28 Apr 2023 14:47:04 -0400 + pvc (0.9.62-0) unstable; urgency=high * [all] Adds an enhanced health checking, monitoring, and reporting system for nodes and clusters diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 290bc4a9..70b76bb3 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.62" +version = "0.9.63" ##########################################################