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",