Bump version to 0.9.47

This commit is contained in:
Joshua Boniface 2021-12-28 22:01:22 -05:00
parent 1142454934
commit ea709f573f
6 changed files with 20 additions and 4 deletions

View File

@ -1 +1 @@
0.9.46
0.9.47

View File

@ -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

View File

@ -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

View File

@ -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",

9
debian/changelog vendored
View File

@ -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 <joshua@boniface.me> Tue, 28 Dec 2021 22:01:22 -0500
pvc (0.9.46-0) unstable; urgency=high
* [API] Fixes bugs with legacy benchmark display

View File

@ -48,7 +48,7 @@ import re
import json
# Daemon version
version = "0.9.46"
version = "0.9.47"
##########################################################