Bump version to 0.9.38

This commit is contained in:
Joshua Boniface 2021-10-03 22:32:41 -04:00
parent aa035a61a7
commit da9248cfa2
7 changed files with 18 additions and 4 deletions

View File

@ -1 +1 @@
0.9.37 0.9.38

View File

@ -55,6 +55,10 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl
## Changelog ## Changelog
#### v0.9.38
* [All] Significantly improve storage benchmark format and reporting
#### v0.9.37 #### v0.9.37
* [All] Adds support for configurable OSD DB size ratios * [All] Adds support for configurable OSD DB size ratios

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

6
debian/changelog vendored
View File

@ -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 pvc (0.9.37-0) unstable; urgency=high
* [All] Adds support for configurable OSD DB size ratios * [All] Adds support for configurable OSD DB size ratios

View File

@ -55,6 +55,10 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl
## Changelog ## Changelog
#### v0.9.38
* [All] Significantly improve storage benchmark format and reporting
#### v0.9.37 #### v0.9.37
* [All] Adds support for configurable OSD DB size ratios * [All] Adds support for configurable OSD DB size ratios

View File

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