Bump version: 0.2.2.dev0 → 0.2.2
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
History
|
History
|
||||||
=======
|
=======
|
||||||
|
|
||||||
0.2.2 (2018-07-xx)
|
0.2.2 (2018-07-24)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
- Features:
|
- Features:
|
||||||
@@ -11,11 +11,15 @@ History
|
|||||||
- Can setup persistence directly to use key-value storage.
|
- Can setup persistence directly to use key-value storage.
|
||||||
- Support loading objects without configured backend.
|
- Support loading objects without configured backend.
|
||||||
- Support for Cinder Queens, Rocky, and Master
|
- Support for Cinder Queens, Rocky, and Master
|
||||||
|
- Serialization returns a compact string
|
||||||
|
|
||||||
- Bug fixes:
|
- Bug fixes:
|
||||||
|
|
||||||
- Workaround for Python 2 getaddrinfo bug
|
- Workaround for Python 2 getaddrinfo bug
|
||||||
- Compatibility with requests and requests-kerberos
|
- 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)
|
0.2.1 (2018-06-14)
|
||||||
------------------
|
------------------
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ from cinderlib import objects
|
|||||||
|
|
||||||
__author__ = """Gorka Eguileor"""
|
__author__ = """Gorka Eguileor"""
|
||||||
__email__ = 'geguileo@redhat.com'
|
__email__ = 'geguileo@redhat.com'
|
||||||
__version__ = '0.2.2.dev0'
|
__version__ = '0.2.2'
|
||||||
|
|
||||||
DEFAULT_PROJECT_ID = objects.DEFAULT_PROJECT_ID
|
DEFAULT_PROJECT_ID = objects.DEFAULT_PROJECT_ID
|
||||||
DEFAULT_USER_ID = objects.DEFAULT_USER_ID
|
DEFAULT_USER_ID = objects.DEFAULT_USER_ID
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 0.2.2.dev0
|
current_version = 0.2.2
|
||||||
commit = True
|
commit = True
|
||||||
tag = True
|
tag = True
|
||||||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:\.dev(?P<dev>\d+))?
|
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:\.dev(?P<dev>\d+))?
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -56,7 +56,7 @@ extras = {
|
|||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='cinderlib',
|
name='cinderlib',
|
||||||
version='0.2.2.dev0',
|
version='0.2.2',
|
||||||
description=("Cinder Library allows using storage drivers outside of "
|
description=("Cinder Library allows using storage drivers outside of "
|
||||||
"Cinder."),
|
"Cinder."),
|
||||||
long_description=readme + '\n\n' + history,
|
long_description=readme + '\n\n' + history,
|
||||||
|
|||||||
Reference in New Issue
Block a user