diff --git a/HISTORY.rst b/HISTORY.rst index 20b9c00..6ecb031 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,11 @@ History ======= +0.2.1 (2016-03-26) +------------------ + +* Fix requirements issue + 0.2.0 (2015-11-25) ------------------ diff --git a/gcs_client/__init__.py b/gcs_client/__init__.py index 36baf74..68a0fa4 100644 --- a/gcs_client/__init__.py +++ b/gcs_client/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Gorka Eguileor' __email__ = 'gorka@eguileor.com' -__version__ = '0.2.0' +__version__ = '0.2.1' from gcs_client.bucket import Bucket # noqa from gcs_client import constants # noqa diff --git a/setup.cfg b/setup.cfg index 6fa5f7b..58025f5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0 +current_version = 0.2.1 commit = True tag = True diff --git a/setup.py b/setup.py index 861f41d..3796b8c 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ setup( name='gcs-client', - version='0.2.0', + version='0.2.1', description="Google Cloud Storage Python client", long_description=readme + '\n\n' + history, author="Gorka Eguileor",