diff --git a/HISTORY.rst b/HISTORY.rst index 08694bf..0d70add 100755 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,10 +4,15 @@ History ======= +0.1.4 (2015-11-16) +------------------ + +* No changes, version bump to reload in pypi + 0.1.3 (2015-11-16) ------------------ -* Reading an object will return data in a string, not a bytearray. +* Reading an object will return data as bytes, not a bytearray. * Read specific versions of an object. * Can specify chunksize on Bucket's open and Object init. * Add exists to buckets and project. diff --git a/gcs_client/__init__.py b/gcs_client/__init__.py index 4511627..ae986f6 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.3' +__version__ = '0.1.4' from gcs_client.bucket import Bucket # noqa from gcs_client.project import Project # noqa diff --git a/setup.cfg b/setup.cfg index 29922df..2785b3c 100755 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.3 +current_version = 0.1.4 commit = True tag = True diff --git a/setup.py b/setup.py index c0b086b..c676efb 100755 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ setup( name='gcs-client', - version='0.1.3', + version='0.1.4', description="Google Cloud Storage Python client", long_description=readme + '\n\n' + history, author="Gorka Eguileor",