Skip to content

Commit

Permalink
Bump version: 0.1.2 → 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Akrog committed Nov 16, 2015
1 parent 6b85e57 commit 15068ae
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@
History
=======

0.1.3 (2015-11-16)
------------------

* Reading an object will return data in a string, 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.
* Fix opening files with names that needed encoding.

0.1.2 (2015-11-10)
------------------

Expand Down
2 changes: 1 addition & 1 deletion gcs_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

__author__ = 'Gorka Eguileor'
__email__ = '[email protected]'
__version__ = '0.1.2'
__version__ = '0.1.3'

from gcs_client.bucket import Bucket # noqa
from gcs_client.project import Project # noqa
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.2
current_version = 0.1.3
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

setup(
name='gcs-client',
version='0.1.2',
version='0.1.3',
description="Google Cloud Storage Python client",
long_description=readme + '\n\n' + history,
author="Gorka Eguileor",
Expand Down

0 comments on commit 15068ae

Please sign in to comment.