From 0aa717a765c19b0ebf457371a24fec334a375a12 Mon Sep 17 00:00:00 2001 From: Gorka Eguileor Date: Mon, 9 Nov 2015 18:01:19 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.0=20=E2=86=92=200.1.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gcs_client/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gcs_client/__init__.py b/gcs_client/__init__.py index 0ec1981..e856353 100755 --- a/gcs_client/__init__.py +++ b/gcs_client/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Gorka Eguileor' __email__ = 'gorka@eguileor.com' -__version__ = '0.1.0' +__version__ = '0.1.1' from gcs_client.bucket import Bucket # noqa from gcs_client.project import Project # noqa diff --git a/setup.cfg b/setup.cfg index beab975..dd37e08 100755 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.1.1 commit = True tag = True diff --git a/setup.py b/setup.py index dc1af89..eaa44d6 100755 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ setup( name='gcs-client', - version='0.1.0', + version='0.1.1', description="Google Cloud Storage Python client", long_description=readme + '\n\n' + history, author="Gorka Eguileor",