Bump version to 0.9.38
This commit is contained in:
parent
cb66b16045
commit
3449069e3d
|
@ -55,6 +55,10 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl
|
|||
|
||||
## Changelog
|
||||
|
||||
#### v0.9.38
|
||||
|
||||
* [All] Significantly improve storage benchmark format and reporting
|
||||
|
||||
#### v0.9.37
|
||||
|
||||
* [All] Adds support for configurable OSD DB size ratios
|
||||
|
|
|
@ -25,7 +25,7 @@ import yaml
|
|||
from distutils.util import strtobool as dustrtobool
|
||||
|
||||
# Daemon version
|
||||
version = '0.9.37'
|
||||
version = '0.9.38'
|
||||
|
||||
# API version
|
||||
API_VERSION = 1.0
|
||||
|
|
|
@ -2,7 +2,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name='pvc',
|
||||
version='0.9.37',
|
||||
version='0.9.38',
|
||||
packages=['pvc', 'pvc.cli_lib'],
|
||||
install_requires=[
|
||||
'Click',
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
pvc (0.9.38-0) unstable; urgency=high
|
||||
|
||||
* [All] Significantly improve storage benchmark format and reporting
|
||||
|
||||
-- Joshua M. Boniface <joshua@boniface.me> Sun, 03 Oct 2021 22:32:41 -0400
|
||||
|
||||
pvc (0.9.37-0) unstable; urgency=high
|
||||
|
||||
* [All] Adds support for configurable OSD DB size ratios
|
||||
|
|
|
@ -55,6 +55,10 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl
|
|||
|
||||
## Changelog
|
||||
|
||||
#### v0.9.38
|
||||
|
||||
* [All] Significantly improve storage benchmark format and reporting
|
||||
|
||||
#### v0.9.37
|
||||
|
||||
* [All] Adds support for configurable OSD DB size ratios
|
||||
|
|
|
@ -48,7 +48,7 @@ import re
|
|||
import json
|
||||
|
||||
# Daemon version
|
||||
version = '0.9.37'
|
||||
version = '0.9.38'
|
||||
|
||||
|
||||
##########################################################
|
||||
|
|
Loading…
Reference in New Issue