diff --git a/HISTORY.rst b/HISTORY.rst index 8018510..841b728 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,7 +2,7 @@ History ======= -0.3.5 (2019-01-XY) +0.3.5 (2019-02-03) ------------------ - Bug fixes: diff --git a/cinderlib/__init__.py b/cinderlib/__init__.py index beb65c2..90ff5d4 100644 --- a/cinderlib/__init__.py +++ b/cinderlib/__init__.py @@ -19,7 +19,7 @@ from cinderlib import objects from cinderlib import serialization from cinderlib import workarounds # noqa -__version__ = '0.3.4' +__version__ = '0.3.5' DEFAULT_PROJECT_ID = objects.DEFAULT_PROJECT_ID DEFAULT_USER_ID = objects.DEFAULT_USER_ID diff --git a/setup.cfg b/setup.cfg index 7823afa..937f51a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.4 +current_version = 0.3.5 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?:\.dev(?P\d+))? diff --git a/setup.py b/setup.py index c8b1bdc..1a01b7e 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ extras = { setuptools.setup( name='cinderlib', - version='0.3.4', + version='0.3.5', description=("Cinder Library allows using storage drivers outside of " "Cinder."), long_description=readme + '\n\n' + history,