Skip to content

Commit a276444

Browse files
committed
Bump to new release 2.0.3
1 parent 31e8a35 commit a276444

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

minio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
__title__ = 'minio-py'
3030
__author__ = 'Minio, Inc.'
31-
__version__ = '2.0.2'
31+
__version__ = '2.0.3'
3232
__license__ = 'Apache 2.0'
3333
__copyright__ = 'Copyright 2015, 2016 Minio, Inc.'
3434

tests/unit/minio_test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,14 @@ def test_default_user_agent(self):
8787

8888
def test_set_app_info(self):
8989
client = Minio('localhost')
90-
expected_user_agent = _DEFAULT_USER_AGENT + ' hello/2.0.2'
91-
client.set_app_info('hello', '2.0.2')
90+
expected_user_agent = _DEFAULT_USER_AGENT + ' hello/2.0.3'
91+
client.set_app_info('hello', '2.0.3')
9292
eq_(client._user_agent, expected_user_agent)
9393

9494
@raises(ValueError)
9595
def test_set_app_info_requires_non_empty_name(self):
9696
client = Minio('localhost:9000')
97-
client.set_app_info('', '2.0.2')
97+
client.set_app_info('', '2.0.3')
9898

9999
@raises(ValueError)
100100
def test_set_app_info_requires_non_empty_version(self):

0 commit comments

Comments
 (0)