Skip to content

Commit

Permalink
azure-mgmt-dns 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lmazuel committed Oct 26, 2017
1 parent 2dffa27 commit 0d457f9
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 12 deletions.
8 changes: 8 additions & 0 deletions azure-mgmt-dns/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
Release History
===============

1.2.0 (2017-10-26)
++++++++++++++++++

- add record_type CAA
- remove pointless return type of delete

Api version moves from 2016-04-01 to 2017-09-01

1.1.0 (2017-10-10)
++++++++++++++++++

Expand Down
6 changes: 3 additions & 3 deletions azure-mgmt-dns/README.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Microsoft Azure SDK for Python
==============================

This is the Microsoft Azure DNS Client Library.
This is the Microsoft Azure DNS 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 and 3.5.
This package has been tested with Python 2.7, 3.3, 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 @@ -36,7 +36,7 @@ If you see azure==0.11.0 (or any version below 1.0), uninstall it first:
Usage
=====

For code examples, see `DNS
For code examples, see `DNS Management
<https://azure-sdk-for-python.readthedocs.org/en/latest/sample_azure-mgmt-dns.html>`__
on readthedocs.org.

Expand Down
2 changes: 1 addition & 1 deletion azure-mgmt-dns/azure/mgmt/dns/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
# regenerated.
# --------------------------------------------------------------------------

VERSION = "1.1.0"
VERSION = "1.2.0"

2 changes: 1 addition & 1 deletion azure-mgmt-dns/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[bdist_wheel]
universal=1
azure-namespace-package=azure-mgmt-nspkg
azure-namespace-package=azure-mgmt-nspkg
14 changes: 7 additions & 7 deletions azure-mgmt-dns/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
# license information.
#--------------------------------------------------------------------------

import re
import os.path
from io import open
from setuptools import find_packages, setup
try:
from azure_bdist_wheel import cmdclass
except ImportError:
from distutils import log as logger
logger.warn("Wheel is not available, disabling bdist_wheel hook")
cmdclass = {}
from io import open
import re
import os.path

# Change the PACKAGE_NAME only to change folder and different name
PACKAGE_NAME = "azure-mgmt-dns"
Expand Down Expand Up @@ -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',
Expand All @@ -76,10 +76,10 @@
'License :: OSI Approved :: MIT License',
],
zip_safe=False,
packages=find_packages(),
packages=find_packages(exclude=["tests"]),
install_requires=[
'azure-common~=1.1.5',
'msrestazure~=0.4.7',
'msrestazure~=0.4.11',
'azure-common~=1.1',
],
cmdclass=cmdclass
)

0 comments on commit 0d457f9

Please sign in to comment.