Skip to content

Commit c4d2c98

Browse files
committed
Bump to new release 2.2.2
1 parent a60bf93 commit c4d2c98

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
@@ -29,7 +29,7 @@
2929

3030
__title__ = 'minio-py'
3131
__author__ = 'Minio, Inc.'
32-
__version__ = '2.2.1'
32+
__version__ = '2.2.2'
3333
__license__ = 'Apache 2.0'
3434
__copyright__ = 'Copyright 2015, 2016, 2017 Minio, Inc.'
3535

tests/unit/minio_test.py

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

8989
def test_set_app_info(self):
9090
client = Minio('localhost')
91-
expected_user_agent = _DEFAULT_USER_AGENT + ' hello/2.2.1'
92-
client.set_app_info('hello', '2.2.1')
91+
expected_user_agent = _DEFAULT_USER_AGENT + ' hello/2.2.2'
92+
client.set_app_info('hello', '2.2.2')
9393
eq_(client._user_agent, expected_user_agent)
9494

9595
@raises(ValueError)
9696
def test_set_app_info_requires_non_empty_name(self):
9797
client = Minio('localhost:9000')
98-
client.set_app_info('', '2.2.1')
98+
client.set_app_info('', '2.2.2')
9999

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

0 commit comments

Comments
 (0)