From a9b4466904b04edb57da6eb850009da861af2b36 Mon Sep 17 00:00:00 2001 From: Gorka Eguileor Date: Sat, 26 Jan 2019 16:09:03 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.3.3=20=E2=86=92=200.3.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cinderlib/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cinderlib/__init__.py b/cinderlib/__init__.py index 476f12e..beb65c2 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.3' +__version__ = '0.3.4' DEFAULT_PROJECT_ID = objects.DEFAULT_PROJECT_ID DEFAULT_USER_ID = objects.DEFAULT_USER_ID diff --git a/setup.cfg b/setup.cfg index 974e152..7823afa 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.3 +current_version = 0.3.4 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?:\.dev(?P\d+))? diff --git a/setup.py b/setup.py index b0451d0..c8b1bdc 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ extras = { setuptools.setup( name='cinderlib', - version='0.3.3', + version='0.3.4', description=("Cinder Library allows using storage drivers outside of " "Cinder."), long_description=readme + '\n\n' + history,