Skip to content

Commit

Permalink
azure-mgmt-authorization 0.40.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lmazuel committed Mar 13, 2018
1 parent 461fc54 commit 0409ece
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 8 deletions.
15 changes: 15 additions & 0 deletions azure-mgmt-authorization/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
+++++++++++++++++++

Expand Down
6 changes: 3 additions & 3 deletions azure-mgmt-authorization/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://pypi.python.org/pypi/azure-servicemanagement-legacy>`__ library.
Expand Down Expand Up @@ -37,8 +37,8 @@ Usage
=====

For code examples, see `Authorization Management
<https://azure-sdk-for-python.readthedocs.org/en/latest/sample_azure-mgmt-authorization.html>`__
on readthedocs.org.
<https://docs.microsoft.com/python/api/overview/azure/authorization>`__
on docs.microsoft.com.


Provide Feedback
Expand Down
9 changes: 4 additions & 5 deletions azure-mgmt-authorization/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,25 +61,24 @@
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',
'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',
'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
)

0 comments on commit 0409ece

Please sign in to comment.