From d0f3e9e285141bf0eea1016d815b262ae579ff5f Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Thu, 23 Sep 2021 14:01:38 -0400 Subject: [PATCH] Bump version to 0.9.36 --- .version | 2 +- README.md | 5 +++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 7 +++++++ docs/index.md | 5 +++++ node-daemon/pvcnoded/Daemon.py | 2 +- 7 files changed, 21 insertions(+), 4 deletions(-) diff --git a/.version b/.version index 8e99e294..c13d8c32 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.35 +0.9.36 diff --git a/README.md b/README.md index 1479698e..bb457be8 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,11 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl ## Changelog +#### v0.9.36 + + * [Node Daemon] Fixes a bug during early cleanup + * [All] Adds support for OSD database/WAL block devices to improve Ceph performance; NOTE: Applies only to new OSDs + #### v0.9.35 * [Node Daemon] Fixes several bugs and crashes in node daemon diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 8519385c..08210943 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.35' +version = '0.9.36' # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index a93c3c12..a1f90dac 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.35', + version='0.9.36', packages=['pvc', 'pvc.cli_lib'], install_requires=[ 'Click', diff --git a/debian/changelog b/debian/changelog index 9022bab8..5c17ef72 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +pvc (0.9.36-0) unstable; urgency=high + + * [Node Daemon] Fixes a bug during early cleanup + * [All] Adds support for OSD database/WAL block devices to improve Ceph performance; NOTE: Applies only to new OSDs + + -- Joshua M. Boniface Thu, 23 Sep 2021 14:01:38 -0400 + pvc (0.9.35-0) unstable; urgency=high * [Node Daemon] Fixes several bugs and crashes in node daemon diff --git a/docs/index.md b/docs/index.md index e7649f18..0c56f951 100644 --- a/docs/index.md +++ b/docs/index.md @@ -55,6 +55,11 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl ## Changelog +#### v0.9.36 + + * [Node Daemon] Fixes a bug during early cleanup + * [All] Adds support for OSD database/WAL block devices to improve Ceph performance; NOTE: Applies only to new OSDs + #### v0.9.35 * [Node Daemon] Fixes several bugs and crashes in node daemon diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 605c5606..ecf29325 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.35' +version = '0.9.36' ##########################################################