From a51a43bc8892bcd1b131bcfb71e0789c017d3f1c Mon Sep 17 00:00:00 2001 From: Gorka Eguileor Date: Sat, 26 Mar 2016 18:40:25 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.0=20=E2=86=92=200.2.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HISTORY.rst | 5 +++++ gcs_client/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) 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",