diff --git a/HISTORY.rst b/HISTORY.rst index 7bb149a..2f680fe 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,7 +2,7 @@ History ======= -0.3.3 (2019-01-xx) +0.3.3 (2019-01-24) ------------------ - Features: diff --git a/cinderlib/__init__.py b/cinderlib/__init__.py index 28f8aa2..476f12e 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.2' +__version__ = '0.3.3' DEFAULT_PROJECT_ID = objects.DEFAULT_PROJECT_ID DEFAULT_USER_ID = objects.DEFAULT_USER_ID diff --git a/setup.cfg b/setup.cfg index 1657b50..974e152 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.2 +current_version = 0.3.3 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?:\.dev(?P\d+))? diff --git a/setup.py b/setup.py index 2e3dcc1..b0451d0 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ extras = { setuptools.setup( name='cinderlib', - version='0.3.2', + version='0.3.3', description=("Cinder Library allows using storage drivers outside of " "Cinder."), long_description=readme + '\n\n' + history,