diff --git a/.version b/.version index 41796a92..4b38075a 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.37 +0.9.38 diff --git a/README.md b/README.md index fe9345b2..f21164b7 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,10 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl ## Changelog +#### v0.9.38 + + * [All] Significantly improve storage benchmark format and reporting + #### v0.9.37 * [All] Adds support for configurable OSD DB size ratios diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index c20ba0a2..855d1670 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.37' +version = '0.9.38' # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 778c6f63..44b7c38f 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.37', + version='0.9.38', packages=['pvc', 'pvc.cli_lib'], install_requires=[ 'Click', diff --git a/debian/changelog b/debian/changelog index 7f4bcb04..598a0f3f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pvc (0.9.38-0) unstable; urgency=high + + * [All] Significantly improve storage benchmark format and reporting + + -- Joshua M. Boniface Sun, 03 Oct 2021 22:32:41 -0400 + pvc (0.9.37-0) unstable; urgency=high * [All] Adds support for configurable OSD DB size ratios diff --git a/docs/index.md b/docs/index.md index d2190eaf..aebd17cf 100644 --- a/docs/index.md +++ b/docs/index.md @@ -55,6 +55,10 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl ## Changelog +#### v0.9.38 + + * [All] Significantly improve storage benchmark format and reporting + #### v0.9.37 * [All] Adds support for configurable OSD DB size ratios diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 71e69fe3..b6638698 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.37' +version = '0.9.38' ##########################################################