diff --git a/minio/__init__.py b/minio/__init__.py index 3065cc1c0..efe94f631 100644 --- a/minio/__init__.py +++ b/minio/__init__.py @@ -28,7 +28,7 @@ __title__ = 'minio-py' __author__ = 'Minio, Inc.' -__version__ = '2.0.3' +__version__ = '2.0.4' __license__ = 'Apache 2.0' __copyright__ = 'Copyright 2015, 2016 Minio, Inc.' diff --git a/tests/unit/minio_test.py b/tests/unit/minio_test.py index 24262c7bf..94125af0a 100644 --- a/tests/unit/minio_test.py +++ b/tests/unit/minio_test.py @@ -12,6 +12,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + import platform from unittest import TestCase @@ -87,14 +88,14 @@ def test_default_user_agent(self): def test_set_app_info(self): client = Minio('localhost') - expected_user_agent = _DEFAULT_USER_AGENT + ' hello/2.0.3' - client.set_app_info('hello', '2.0.3') + expected_user_agent = _DEFAULT_USER_AGENT + ' hello/2.0.4' + client.set_app_info('hello', '2.0.4') eq_(client._user_agent, expected_user_agent) @raises(ValueError) def test_set_app_info_requires_non_empty_name(self): client = Minio('localhost:9000') - client.set_app_info('', '2.0.3') + client.set_app_info('', '2.0.4') @raises(ValueError) def test_set_app_info_requires_non_empty_version(self):