Bump version to 0.9.36
This commit is contained in:
parent
6cef68d157
commit
eba142f470
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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
|
||||
|
||||
* [Node Daemon] Fixes several bugs and crashes in node daemon
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -48,7 +48,7 @@ import re
|
|||
import json
|
||||
|
||||
# Daemon version
|
||||
version = '0.9.35'
|
||||
version = '0.9.36'
|
||||
|
||||
|
||||
##########################################################
|
||||
|
|
Loading…
Reference in New Issue