From e79d200244a06338647757eef186755371615b78 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Thu, 7 Oct 2021 11:52:38 -0400 Subject: [PATCH] Bump version to 0.9.39 --- .version | 2 +- README.md | 6 ++++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 8 ++++++++ docs/index.md | 6 ++++++ node-daemon/pvcnoded/Daemon.py | 2 +- 7 files changed, 24 insertions(+), 4 deletions(-) diff --git a/.version b/.version index 4b38075a..9e283c5b 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.38 +0.9.39 diff --git a/README.md b/README.md index 0937c1c3..ad3469bf 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,12 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl ## Changelog +###### v0.9.39 + + * [Documentation] Update several documentation sections + * [API Daemon/CLI Client] Add negate flag for VM option limits (node, tag, state) + * [Build] Add linting check to build-and-deploy.sh + ###### v0.9.38 * [All] Significantly improve storage benchmark format and reporting diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 855d1670..1206f7d0 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.38' +version = '0.9.39' # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 44b7c38f..16b5b557 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.38', + version='0.9.39', packages=['pvc', 'pvc.cli_lib'], install_requires=[ 'Click', diff --git a/debian/changelog b/debian/changelog index 598a0f3f..c66314e4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +pvc (0.9.39-0) unstable; urgency=high + + * [Documentation] Update several documentation sections + * [API Daemon/CLI Client] Add negate flag for VM option limits (node, tag, state) + * [Build] Add linting check to build-and-deploy.sh + + -- Joshua M. Boniface Thu, 07 Oct 2021 11:52:38 -0400 + pvc (0.9.38-0) unstable; urgency=high * [All] Significantly improve storage benchmark format and reporting diff --git a/docs/index.md b/docs/index.md index 353538a3..e60d8396 100644 --- a/docs/index.md +++ b/docs/index.md @@ -55,6 +55,12 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl ## Changelog +###### v0.9.39 + + * [Documentation] Update several documentation sections + * [API Daemon/CLI Client] Add negate flag for VM option limits (node, tag, state) + * [Build] Add linting check to build-and-deploy.sh + ###### v0.9.38 * [All] Significantly improve storage benchmark format and reporting diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index b6638698..e0531e23 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.38' +version = '0.9.39' ##########################################################