diff --git a/.version b/.version index 380550b4..2d72c8d3 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.47 +0.9.48 diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bcfc120..d08f885f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 45416141..d9da6890 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.47" +version = "0.9.48" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index dbdef117..8dc60837 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.47", + version="0.9.48", packages=["pvc", "pvc.cli_lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 1e9bc902..7368c5fb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 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 diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 20a283c2..43042bac 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.47" +version = "0.9.48" ##########################################################