Bump version to 0.9.47
This commit is contained in:
parent
b6d689b769
commit
becd1919c7
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -48,7 +48,7 @@ import re
|
|||
import json
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.46"
|
||||
version = "0.9.47"
|
||||
|
||||
|
||||
##########################################################
|
||||
|
|
Loading…
Reference in New Issue