Bump version: 0.3.5 → 0.3.6

This commit is contained in:
Gorka Eguileor 2019-02-04 16:44:26 +01:00
parent f24db760a6
commit 6f0e451c83
4 changed files with 10 additions and 3 deletions

View File

@ -2,6 +2,13 @@
History
=======
0.3.6 (2019-02-04)
------------------
- Bug fixes:
- Replace stats workaround with our stats caching mechanism
0.3.5 (2019-02-03)
------------------

View File

@ -19,7 +19,7 @@ from cinderlib import objects
from cinderlib import serialization
from cinderlib import workarounds # noqa
__version__ = '0.3.5'
__version__ = '0.3.6'
DEFAULT_PROJECT_ID = objects.DEFAULT_PROJECT_ID
DEFAULT_USER_ID = objects.DEFAULT_USER_ID

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.5
current_version = 0.3.6
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:\.dev(?P<dev>\d+))?

View File

@ -55,7 +55,7 @@ extras = {
setuptools.setup(
name='cinderlib',
version='0.3.5',
version='0.3.6',
description=("Cinder Library allows using storage drivers outside of "
"Cinder."),
long_description=readme + '\n\n' + history,