Bump version to 0.9.36

This commit is contained in:
Joshua Boniface 2021-09-23 14:01:38 -04:00
parent adc8a5a3bc
commit d0f3e9e285
7 changed files with 21 additions and 4 deletions

View File

@ -1 +1 @@
0.9.35 0.9.36

View File

@ -55,6 +55,11 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl
## Changelog ## 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 #### v0.9.35
* [Node Daemon] Fixes several bugs and crashes in node daemon * [Node Daemon] Fixes several bugs and crashes in node daemon

View File

@ -25,7 +25,7 @@ import yaml
from distutils.util import strtobool as dustrtobool from distutils.util import strtobool as dustrtobool
# Daemon version # Daemon version
version = '0.9.35' version = '0.9.36'
# API version # API version
API_VERSION = 1.0 API_VERSION = 1.0

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup( setup(
name='pvc', name='pvc',
version='0.9.35', version='0.9.36',
packages=['pvc', 'pvc.cli_lib'], packages=['pvc', 'pvc.cli_lib'],
install_requires=[ install_requires=[
'Click', 'Click',

7
debian/changelog vendored
View File

@ -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 <joshua@boniface.me> Thu, 23 Sep 2021 14:01:38 -0400
pvc (0.9.35-0) unstable; urgency=high pvc (0.9.35-0) unstable; urgency=high
* [Node Daemon] Fixes several bugs and crashes in node daemon * [Node Daemon] Fixes several bugs and crashes in node daemon

View File

@ -55,6 +55,11 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl
## Changelog ## 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 #### v0.9.35
* [Node Daemon] Fixes several bugs and crashes in node daemon * [Node Daemon] Fixes several bugs and crashes in node daemon

View File

@ -48,7 +48,7 @@ import re
import json import json
# Daemon version # Daemon version
version = '0.9.35' version = '0.9.36'
########################################################## ##########################################################