From 58d57d7037a75cc965c480858374f7f2608a18ce Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Tue, 28 Dec 2021 15:02:14 -0500 Subject: [PATCH] Bump version to 0.9.46 --- .version | 2 +- CHANGELOG.md | 12 ++++++++++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 14 ++++++++++++++ node-daemon/pvcnoded/Daemon.py | 2 +- 6 files changed, 30 insertions(+), 4 deletions(-) diff --git a/.version b/.version index d3b54211..9895ddff 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.45 +0.9.46 diff --git a/CHANGELOG.md b/CHANGELOG.md index e6aa970b..69d26c79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ ## PVC Changelog +###### [v0.9.46](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.46) + + * [API] Fixes bugs with legacy benchmark display + * [API] Fixes a bug around cloned image sizes + * [API] Removes extraneous message text in provisioner create command + * [API] Corrects bugs around fuzzy matching + * [CLI] Adds auditing for PVC CLI to local syslog + * [CLI] Adds --yes bypass for benchmark command + * [Node Daemon/API/CLI] Adds support for "detect" strings when specifying OSD or OSDDB devices + * [Node Daemon] Fixes a bug when removing OSDs + * [Node Daemon] Fixes a single-node cluster shutdown deadlock + ###### [v0.9.45](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.45) * [Node Daemon] Fixes an ordering issue with pvcnoded.service diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index d0ccbc00..9ec7c6d0 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.45" +version = "0.9.46" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 30f03632..4f558c38 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.45", + version="0.9.46", packages=["pvc", "pvc.cli_lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index c42fb3f9..503fb777 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +pvc (0.9.46-0) unstable; urgency=high + + * [API] Fixes bugs with legacy benchmark display + * [API] Fixes a bug around cloned image sizes + * [API] Removes extraneous message text in provisioner create command + * [API] Corrects bugs around fuzzy matching + * [CLI] Adds auditing for PVC CLI to local syslog + * [CLI] Adds --yes bypass for benchmark command + * [Node Daemon/API/CLI] Adds support for "detect" strings when specifying OSD or OSDDB devices + * [Node Daemon] Fixes a bug when removing OSDs + * [Node Daemon] Fixes a single-node cluster shutdown deadlock + + -- Joshua M. Boniface Tue, 28 Dec 2021 15:02:14 -0500 + pvc (0.9.45-0) unstable; urgency=high * [Node Daemon] Fixes an ordering issue with pvcnoded.service diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 74a80ba8..a76d6c9b 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.45" +version = "0.9.46" ##########################################################