From 2a21d48128650070c4e3b9fe4513a225195054b6 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 12 Aug 2022 11:09:25 -0400 Subject: [PATCH] Bump version to 0.9.52 --- .version | 2 +- CHANGELOG.md | 7 +++++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 9 +++++++++ node-daemon/pvcnoded/Daemon.py | 2 +- 6 files changed, 20 insertions(+), 4 deletions(-) diff --git a/.version b/.version index a75b09ef..1ba936fe 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.51 +0.9.52 diff --git a/CHANGELOG.md b/CHANGELOG.md index 66310b2d..bd2f3bfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ ## PVC Changelog +###### [v0.9.52](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.52) + + * [CLI] Fixes a bug with vm modify not requiring a cluster + * [Docs] Adds a reference to the bootstrap daemon + * [API] Adds sorting to node and VM lists for consistency + * [Node Daemon/API] Adds kb_ stats values for OSD stats + ###### [v0.9.51](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.51) * [CLI Client] Fixes a faulty literal_eval when viewing task status diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 3eaa4f70..b9dedb93 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.51" +version = "0.9.52" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index a156aab6..08836748 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.51", + version="0.9.52", packages=["pvc", "pvc.cli_lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 733b5a4f..9b068866 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +pvc (0.9.52-0) unstable; urgency=high + + * [CLI] Fixes a bug with vm modify not requiring a cluster + * [Docs] Adds a reference to the bootstrap daemon + * [API] Adds sorting to node and VM lists for consistency + * [Node Daemon/API] Adds kb_ stats values for OSD stats + + -- Joshua M. Boniface Fri, 12 Aug 2022 11:09:25 -0400 + pvc (0.9.51-0) unstable; urgency=high * [CLI Client] Fixes a faulty literal_eval when viewing task status diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 6b1a3dbf..2d50bb30 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.51" +version = "0.9.52" ##########################################################