Bump version: 0.2.2 → 0.3.0

This commit is contained in:
Gorka Eguileor 2019-01-14 17:15:04 +01:00
parent 85776225cb
commit 5dbf7528f6
4 changed files with 7 additions and 6 deletions

View File

@ -2,7 +2,7 @@
History
=======
0.2.3 (2018-MM-DD)
0.3.0 (2019-01-14)
------------------
- Bug fixes:
@ -14,6 +14,8 @@ History
- Provide better message when device is not available.
- Backend name stored in host instead of in the AZ (backward incompatible).
- Support multi-pool drivers.
- Support QoS
- Support extra specs
0.2.2 (2018-07-24)
------------------

View File

@ -13,14 +13,13 @@
# License for the specific language governing permissions and limitations
# under the License.
from __future__ import absolute_import
import pkg_resources
from cinderlib import cinderlib
from cinderlib import objects
from cinderlib import serialization
from cinderlib import workarounds # noqa
__version__ = pkg_resources.get_distribution('cinder').version
__version__ = '0.3.0'
DEFAULT_PROJECT_ID = objects.DEFAULT_PROJECT_ID
DEFAULT_USER_ID = objects.DEFAULT_USER_ID

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.2
current_version = 0.3.0
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:\.dev(?P<dev>\d+))?

View File

@ -55,7 +55,7 @@ extras = {
setuptools.setup(
name='cinderlib',
version='0.2.2',
version='0.3.0',
description=("Cinder Library allows using storage drivers outside of "
"Cinder."),
long_description=readme + '\n\n' + history,
@ -70,7 +70,7 @@ setuptools.setup(
zip_safe=False,
keywords='cinderlib',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',