From dee570d165818f3347ffaccdd47f617bc89f9780 Mon Sep 17 00:00:00 2001 From: Laurent Mazuel Date: Tue, 3 Apr 2018 15:51:05 -0700 Subject: [PATCH] azure-common 1.1.9 --- azure-common/HISTORY.rst | 11 +++++++++++ azure-common/azure/common/__init__.py | 2 +- azure-common/setup.py | 8 ++++---- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/azure-common/HISTORY.rst b/azure-common/HISTORY.rst index b36c4df4144f..4aee3e021402 100644 --- a/azure-common/HISTORY.rst +++ b/azure-common/HISTORY.rst @@ -3,6 +3,17 @@ Release History =============== +1.1.9 (2017-04-03) +++++++++++++++++++ + +**Features** + +- Add "azure.profiles" namespace #2247 + +**Bugfixes** + +- get_client_from_cli_profile now supports Datalake #2318 + 1.1.8 (2017-07-28) ++++++++++++++++++ diff --git a/azure-common/azure/common/__init__.py b/azure-common/azure/common/__init__.py index 66b3adf55c15..e0d9bc8973ac 100644 --- a/azure-common/azure/common/__init__.py +++ b/azure-common/azure/common/__init__.py @@ -5,7 +5,7 @@ #-------------------------------------------------------------------------- __author__ = 'Microsoft Corp. ' -__version__ = '1.1.8' +__version__ = '1.1.9' class AzureException(Exception): diff --git a/azure-common/setup.py b/azure-common/setup.py index f13512c8736d..c91a06c83783 100644 --- a/azure-common/setup.py +++ b/azure-common/setup.py @@ -39,12 +39,12 @@ setup( name='azure-common', - version='1.1.8', + version='1.1.9', description='Microsoft Azure Client Library for Python (Common)', long_description=readme + '\n\n' + history, license='MIT License', author='Microsoft Corporation', - author_email='ptvshelp@microsoft.com', + author_email='azpysdkhelp@microsoft.com', url='https://github.com/Azure/azure-sdk-for-python', classifiers=[ 'Development Status :: 5 - Production/Stable', @@ -52,7 +52,6 @@ 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', @@ -62,10 +61,11 @@ packages=[ 'azure', 'azure.common', + 'azure.profiles', ], extras_require={ 'autorest':[ - 'msrestazure>=0.4.0,<0.5.0', + 'msrestazure>=0.4.0,<2.0.0', ] }, cmdclass=cmdclass