From 23977b04fc12177a2f6ab1908d86c5b474765f58 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Thu, 30 Sep 2021 02:02:53 -0400 Subject: [PATCH] Bump version to 0.9.37 --- .version | 2 +- README.md | 12 ++++++++++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 14 ++++++++++++++ docs/index.md | 12 ++++++++++++ node-daemon/pvcnoded/Daemon.py | 2 +- 7 files changed, 42 insertions(+), 4 deletions(-) diff --git a/.version b/.version index c13d8c32..41796a92 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.36 +0.9.37 diff --git a/README.md b/README.md index bb457be8..fe9345b2 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,18 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl ## Changelog +#### v0.9.37 + + * [All] Adds support for configurable OSD DB size ratios + * [Node Daemon] Fixes bugs with OSD creation + * [Node Daemon] Fixes exception bugs in CephInstance + * [CLI Client] Adjusts descriptions around Ceph OSDs + * [Node Daemon] Fixes ordering of pvc-flush unit + * [Node Daemon] Fixes bugs in fence handling and libvirt keepalive + * [Node Daemon] Simplifies locking for and speeds up VM migrations + * [Node Daemon] Fixes bugs in queue get timeouts + * [API Daemon] Adjusts benchmark test jobs configuration and naming + #### v0.9.36 * [Node Daemon] Fixes a bug during early cleanup diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 08210943..c20ba0a2 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.36' +version = '0.9.37' # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index a1f90dac..778c6f63 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.36', + version='0.9.37', packages=['pvc', 'pvc.cli_lib'], install_requires=[ 'Click', diff --git a/debian/changelog b/debian/changelog index 5c17ef72..7f4bcb04 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +pvc (0.9.37-0) unstable; urgency=high + + * [All] Adds support for configurable OSD DB size ratios + * [Node Daemon] Fixes bugs with OSD creation + * [Node Daemon] Fixes exception bugs in CephInstance + * [CLI Client] Adjusts descriptions around Ceph OSDs + * [Node Daemon] Fixes ordering of pvc-flush unit + * [Node Daemon] Fixes bugs in fence handling and libvirt keepalive + * [Node Daemon] Simplifies locking for and speeds up VM migrations + * [Node Daemon] Fixes bugs in queue get timeouts + * [API Daemon] Adjusts benchmark test jobs configuration and naming + + -- Joshua M. Boniface Thu, 30 Sep 2021 02:02:53 -0400 + pvc (0.9.36-0) unstable; urgency=high * [Node Daemon] Fixes a bug during early cleanup diff --git a/docs/index.md b/docs/index.md index 0c56f951..d2190eaf 100644 --- a/docs/index.md +++ b/docs/index.md @@ -55,6 +55,18 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl ## Changelog +#### v0.9.37 + + * [All] Adds support for configurable OSD DB size ratios + * [Node Daemon] Fixes bugs with OSD creation + * [Node Daemon] Fixes exception bugs in CephInstance + * [CLI Client] Adjusts descriptions around Ceph OSDs + * [Node Daemon] Fixes ordering of pvc-flush unit + * [Node Daemon] Fixes bugs in fence handling and libvirt keepalive + * [Node Daemon] Simplifies locking for and speeds up VM migrations + * [Node Daemon] Fixes bugs in queue get timeouts + * [API Daemon] Adjusts benchmark test jobs configuration and naming + #### v0.9.36 * [Node Daemon] Fixes a bug during early cleanup diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 84bf860d..71e69fe3 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.36' +version = '0.9.37' ##########################################################