Bump version to 0.9.48
This commit is contained in:
parent
d6ca74376a
commit
5807351405
|
@ -1,5 +1,11 @@
|
|||
## PVC Changelog
|
||||
|
||||
###### [v0.9.48](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.48)
|
||||
|
||||
* [CLI] Fixes situation where only a single cluster is available
|
||||
* [CLI/API/Daemon] Allows forcing of OSD removal ignoring errors
|
||||
* [CLI] Fixes bug where down OSDs are not displayed
|
||||
|
||||
###### [v0.9.47](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.47)
|
||||
|
||||
* [Node Daemon/API/CLI] Adds Ceph pool device class/tier support
|
||||
|
|
|
@ -25,7 +25,7 @@ import yaml
|
|||
from distutils.util import strtobool as dustrtobool
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.47"
|
||||
version = "0.9.48"
|
||||
|
||||
# API version
|
||||
API_VERSION = 1.0
|
||||
|
|
|
@ -2,7 +2,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name="pvc",
|
||||
version="0.9.47",
|
||||
version="0.9.48",
|
||||
packages=["pvc", "pvc.cli_lib"],
|
||||
install_requires=[
|
||||
"Click",
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
pvc (0.9.48-0) unstable; urgency=high
|
||||
|
||||
* [CLI] Fixes situation where only a single cluster is available
|
||||
* [CLI/API/Daemon] Allows forcing of OSD removal ignoring errors
|
||||
* [CLI] Fixes bug where down OSDs are not displayed
|
||||
|
||||
-- Joshua M. Boniface <joshua@boniface.me> Fri, 29 Apr 2022 12:13:58 -0400
|
||||
|
||||
pvc (0.9.47-0) unstable; urgency=high
|
||||
|
||||
* [Node Daemon/API/CLI] Adds Ceph pool device class/tier support
|
||||
|
|
|
@ -48,7 +48,7 @@ import re
|
|||
import json
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.47"
|
||||
version = "0.9.48"
|
||||
|
||||
|
||||
##########################################################
|
||||
|
|
Loading…
Reference in New Issue