Bump version to 0.9.36
This commit is contained in:
parent
adc8a5a3bc
commit
d0f3e9e285
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -48,7 +48,7 @@ import re
|
||||||
import json
|
import json
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = '0.9.35'
|
version = '0.9.36'
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
Loading…
Reference in New Issue