Skip to content

Commit

Permalink
azure-common 1.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
lmazuel committed Apr 3, 2018
1 parent a7eabc2 commit dee570d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
11 changes: 11 additions & 0 deletions azure-common/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
++++++++++++++++++

Expand Down
2 changes: 1 addition & 1 deletion azure-common/azure/common/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#--------------------------------------------------------------------------

__author__ = 'Microsoft Corp. <[email protected]>'
__version__ = '1.1.8'
__version__ = '1.1.9'


class AzureException(Exception):
Expand Down
8 changes: 4 additions & 4 deletions azure-common/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,20 +39,19 @@

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',
'Programming Language :: Python',
'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',
Expand All @@ -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
Expand Down

0 comments on commit dee570d

Please sign in to comment.