diff --git a/azure-mgmt-authorization/HISTORY.rst b/azure-mgmt-authorization/HISTORY.rst index a82f279a5484..277fe3106ed2 100644 --- a/azure-mgmt-authorization/HISTORY.rst +++ b/azure-mgmt-authorization/HISTORY.rst @@ -3,6 +3,21 @@ Release History =============== +0.40.0 (2018-03-13) ++++++++++++++++++++ + +**Breaking changes** + +- Several properties have been flattened ans "properties" attribute is not needed anymore + (e.g. properties.email_address => email_address) +- Some method signature change (e.g. create_by_id) + +**Features** + +- Adding attributes data_actions / not_data_actions / is_data_actions + +API version is now 2018-01-01-preview + 0.30.0 (2017-04-28) +++++++++++++++++++ diff --git a/azure-mgmt-authorization/README.rst b/azure-mgmt-authorization/README.rst index 88d538fa185f..efa1778dcf2c 100644 --- a/azure-mgmt-authorization/README.rst +++ b/azure-mgmt-authorization/README.rst @@ -6,7 +6,7 @@ This is the Microsoft Azure Authorization Management Client Library. Azure Resource Manager (ARM) is the next generation of management APIs that replace the old Azure Service Management (ASM). -This package has been tested with Python 2.7, 3.3, 3.4, 3.5 and 3.6. +This package has been tested with Python 2.7, 3.4, 3.5 and 3.6. For the older Azure Service Management (ASM) libraries, see `azure-servicemanagement-legacy `__ library. @@ -37,8 +37,8 @@ Usage ===== For code examples, see `Authorization Management -`__ -on readthedocs.org. +`__ +on docs.microsoft.com. Provide Feedback diff --git a/azure-mgmt-authorization/setup.py b/azure-mgmt-authorization/setup.py index 44ca935c7241..75101d52addb 100644 --- a/azure-mgmt-authorization/setup.py +++ b/azure-mgmt-authorization/setup.py @@ -61,7 +61,7 @@ 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 :: 4 - Beta', @@ -69,17 +69,16 @@ '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', 'License :: OSI Approved :: MIT License', ], zip_safe=False, - packages=find_packages(), + packages=find_packages(exclude=["tests"]), install_requires=[ - 'msrestazure~=0.4.7', - 'azure-common~=1.1.5', + 'msrestazure>=0.4.20,<2.0.0', + 'azure-common~=1.1', ], cmdclass=cmdclass )