diff --git a/.version b/.version index 9895ddff..380550b4 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.46 +0.9.47 diff --git a/CHANGELOG.md b/CHANGELOG.md index 69d26c79..1bcfc120 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ ## PVC Changelog +###### [v0.9.47](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.47) + + * [Node Daemon/API/CLI] Adds Ceph pool device class/tier support + * [API] Fixes a bug returning values if a Ceph pool has not yet reported stats + * [API/CLI] Adds PGs count to the pool list output + * [API/CLI] Adds Ceph pool PGs count adjustment support + ###### [v0.9.46](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.46) * [API] Fixes bugs with legacy benchmark display diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 9ec7c6d0..45416141 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.46" +version = "0.9.47" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 4f558c38..dbdef117 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.46", + version="0.9.47", packages=["pvc", "pvc.cli_lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 503fb777..1e9bc902 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +pvc (0.9.47-0) unstable; urgency=high + + * [Node Daemon/API/CLI] Adds Ceph pool device class/tier support + * [API] Fixes a bug returning values if a Ceph pool has not yet reported stats + * [API/CLI] Adds PGs count to the pool list output + * [API/CLI] Adds Ceph pool PGs count adjustment support + + -- Joshua M. Boniface Tue, 28 Dec 2021 22:01:22 -0500 + pvc (0.9.46-0) unstable; urgency=high * [API] Fixes bugs with legacy benchmark display diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index a76d6c9b..20a283c2 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.46" +version = "0.9.47" ##########################################################