From bf6aa777372b688612b1c22c52d5fb50b53bf44c Mon Sep 17 00:00:00 2001 From: Gorka Eguileor Date: Thu, 24 Jan 2019 17:21:30 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.3.2=20=E2=86=92=200.3.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HISTORY.rst | 2 +- cinderlib/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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,