From 71666b7b317e517599c56b5c93da478aba1526b0 Mon Sep 17 00:00:00 2001 From: Minio Trusted Date: Thu, 5 Jan 2017 12:50:30 -0800 Subject: [PATCH] Bump to new release 2.0.6 --- minio/__init__.py | 6 +++--- tests/unit/minio_test.py | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/minio/__init__.py b/minio/__init__.py index 206eb6e23..08f18fc39 100644 --- a/minio/__init__.py +++ b/minio/__init__.py @@ -23,15 +23,15 @@ >>> for bucket in minio.list_buckets(): ... print(bucket.name) -:copyright: (c) 2015, 2016 by Minio, Inc. +:copyright: (c) 2015, 2016, 2017 by Minio, Inc. :license: Apache 2.0, see LICENSE for more details. """ __title__ = 'minio-py' __author__ = 'Minio, Inc.' -__version__ = '2.0.5' +__version__ = '2.0.6' __license__ = 'Apache 2.0' -__copyright__ = 'Copyright 2015, 2016 Minio, Inc.' +__copyright__ = 'Copyright 2015, 2016, 2017 Minio, Inc.' from .api import Minio from .error import ResponseError diff --git a/tests/unit/minio_test.py b/tests/unit/minio_test.py index b6c9cdc6d..d064d90b1 100644 --- a/tests/unit/minio_test.py +++ b/tests/unit/minio_test.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # Minio Python Library for Amazon S3 Compatible Cloud Storage, -# (C) 2015, 2016 Minio, Inc. +# (C) 2015, 2016, 2017 Minio, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -88,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.5' - client.set_app_info('hello', '2.0.5') + expected_user_agent = _DEFAULT_USER_AGENT + ' hello/2.0.6' + client.set_app_info('hello', '2.0.6') 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.5') + client.set_app_info('', '2.0.6') @raises(ValueError) def test_set_app_info_requires_non_empty_version(self):