From 6f0e451c837373b01dd2c835ccb1f18a175d651e Mon Sep 17 00:00:00 2001 From: Gorka Eguileor Date: Mon, 4 Feb 2019 16:44:26 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.3.5=20=E2=86=92=200.3.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HISTORY.rst | 7 +++++++ cinderlib/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 841b728..9b38ad9 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -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) ------------------ diff --git a/cinderlib/__init__.py b/cinderlib/__init__.py index 90ff5d4..14003c6 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.5' +__version__ = '0.3.6' DEFAULT_PROJECT_ID = objects.DEFAULT_PROJECT_ID DEFAULT_USER_ID = objects.DEFAULT_USER_ID diff --git a/setup.cfg b/setup.cfg index 937f51a..f40a925 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.5 +current_version = 0.3.6 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?:\.dev(?P\d+))? diff --git a/setup.py b/setup.py index 1a01b7e..c48529e 100644 --- a/setup.py +++ b/setup.py @@ -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,