Bump version to 0.9.37
This commit is contained in:
parent
bb1cca522f
commit
23977b04fc
12
README.md
12
README.md
|
@ -55,6 +55,18 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl
|
||||||
|
|
||||||
## Changelog
|
## 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
|
#### v0.9.36
|
||||||
|
|
||||||
* [Node Daemon] Fixes a bug during early cleanup
|
* [Node Daemon] Fixes a bug during early cleanup
|
||||||
|
|
|
@ -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.36'
|
version = '0.9.37'
|
||||||
|
|
||||||
# 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.36',
|
version='0.9.37',
|
||||||
packages=['pvc', 'pvc.cli_lib'],
|
packages=['pvc', 'pvc.cli_lib'],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'Click',
|
'Click',
|
||||||
|
|
|
@ -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 <joshua@boniface.me> Thu, 30 Sep 2021 02:02:53 -0400
|
||||||
|
|
||||||
pvc (0.9.36-0) unstable; urgency=high
|
pvc (0.9.36-0) unstable; urgency=high
|
||||||
|
|
||||||
* [Node Daemon] Fixes a bug during early cleanup
|
* [Node Daemon] Fixes a bug during early cleanup
|
||||||
|
|
|
@ -55,6 +55,18 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl
|
||||||
|
|
||||||
## Changelog
|
## 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
|
#### v0.9.36
|
||||||
|
|
||||||
* [Node Daemon] Fixes a bug during early cleanup
|
* [Node Daemon] Fixes a bug during early cleanup
|
||||||
|
|
|
@ -48,7 +48,7 @@ import re
|
||||||
import json
|
import json
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = '0.9.36'
|
version = '0.9.37'
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
Loading…
Reference in New Issue