From fe4d66a02415bf7368911e57cc122ecd40f13874 Mon Sep 17 00:00:00 2001 From: Gorka Eguileor Date: Fri, 24 Aug 2018 17:20:27 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.2.dev0=20=E2=86=92=200.2.?= =?UTF-8?q?2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HISTORY.rst | 6 +++++- cinderlib/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 008012a..ac0df1c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,7 +2,7 @@ History ======= -0.2.2 (2018-07-xx) +0.2.2 (2018-07-24) ------------------ - Features: @@ -11,11 +11,15 @@ History - Can setup persistence directly to use key-value storage. - Support loading objects without configured backend. - Support for Cinder Queens, Rocky, and Master + - Serialization returns a compact string - Bug fixes: - Workaround for Python 2 getaddrinfo bug - Compatibility with requests and requests-kerberos + - Fix key-value support set_key_value. + - Fix get_key_value to return KeyValue. + - Fix loading object without configured backend. 0.2.1 (2018-06-14) ------------------ diff --git a/cinderlib/__init__.py b/cinderlib/__init__.py index fb806a7..ce526b7 100644 --- a/cinderlib/__init__.py +++ b/cinderlib/__init__.py @@ -6,7 +6,7 @@ from cinderlib import objects __author__ = """Gorka Eguileor""" __email__ = 'geguileo@redhat.com' -__version__ = '0.2.2.dev0' +__version__ = '0.2.2' DEFAULT_PROJECT_ID = objects.DEFAULT_PROJECT_ID DEFAULT_USER_ID = objects.DEFAULT_USER_ID diff --git a/setup.cfg b/setup.cfg index 122fa8e..6a558a5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.2.dev0 +current_version = 0.2.2 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?:\.dev(?P\d+))? diff --git a/setup.py b/setup.py index b4b8346..97ce89b 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ extras = { setuptools.setup( name='cinderlib', - version='0.2.2.dev0', + version='0.2.2', description=("Cinder Library allows using storage drivers outside of " "Cinder."), long_description=readme + '\n\n' + history,