From 48ef3b7599bee6aa38ae67f93f049db0c36896b1 Mon Sep 17 00:00:00 2001 From: Gorka Eguileor Date: Wed, 25 Nov 2015 01:07:06 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.4=20=E2=86=92=200.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HISTORY.rst | 7 +++++++ gcs_client/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 0d70add..20b9c00 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,13 @@ History ======= +0.2.0 (2015-11-25) +------------------ + +* Add support for delimiter in listings using Prefix object +* Remove dependency from google-api-python-client +* Return descriptive error message on AttributeError + 0.1.4 (2015-11-16) ------------------ diff --git a/gcs_client/__init__.py b/gcs_client/__init__.py index 1338cf9..ac936dd 100644 --- a/gcs_client/__init__.py +++ b/gcs_client/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Gorka Eguileor' __email__ = 'gorka@eguileor.com' -__version__ = '0.1.4' +__version__ = '0.2.0' from gcs_client.bucket import Bucket # noqa from gcs_client.project import Project # noqa diff --git a/setup.cfg b/setup.cfg index 2785b3c..6fa5f7b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.4 +current_version = 0.2.0 commit = True tag = True diff --git a/setup.py b/setup.py index 818cdd1..e928cba 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ setup( name='gcs-client', - version='0.1.4', + version='0.2.0', description="Google Cloud Storage Python client", long_description=readme + '\n\n' + history, author="Gorka Eguileor",