Bump version to 0.9.37

This commit is contained in:
Joshua Boniface 2021-09-30 02:02:53 -04:00
parent bb1cca522f
commit 23977b04fc
7 changed files with 42 additions and 4 deletions

View File

@ -1 +1 @@
0.9.36 0.9.37

View File

@ -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

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.36' version = '0.9.37'
# 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.36', version='0.9.37',
packages=['pvc', 'pvc.cli_lib'], packages=['pvc', 'pvc.cli_lib'],
install_requires=[ install_requires=[
'Click', 'Click',

14
debian/changelog vendored
View File

@ -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

View File

@ -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

View File

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