Skip to content

Commit

Permalink
azure-mgmt-dns 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lmazuel committed Dec 12, 2016
1 parent 9b68d15 commit fc2809a
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ The following packages are already released as "stable" and are officially produ
- azure-batch 1.1.0
- azure-mgmt-batch 2.0.0
- azure-mgmt-devtestlabs 1.0.0
- azure-mgmt-dns 1.0.0
- azure-mgmt-logic 1.0.0
- azure-mgmt-redis 3.0.0
- azure-mgmt-scheduler 1.1.0
Expand All @@ -90,7 +91,6 @@ listed before.
- azure-mgmt-datalake-store 0.1.1
- azure-mgmt-commerce 0.30.0rc6
- azure-mgmt-eventhub 0.1.0
- azure-mgmt-dns 0.30.0rc6
- azure-mgmt-iothub 0.2.0
- azure-mgmt-media 0.1.1
- azure-mgmt-notificationhubs 0.30.0
Expand Down
9 changes: 9 additions & 0 deletions azure-mgmt-dns/HISTORY.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.. :changelog:
Release History
===============

1.0.0 (2016-12-12)
++++++++++++++++++

* Initial release
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 = "0.30.0rc6"
VERSION = "1.0.0"

7 changes: 6 additions & 1 deletion azure-mgmt-dns/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,16 @@
if not version:
raise RuntimeError('Cannot find version information')

with open('README.rst', encoding='utf-8') as f:
readme = f.read()
with open('HISTORY.rst', encoding='utf-8') as f:
history = f.read()

setup(
name='azure-mgmt-dns',
version=version,
description='Microsoft Azure dns Library for Python',
long_description=open('README.rst', 'r').read(),
long_description=readme + '\n\n' + history,
license='MIT License',
author='Microsoft Corporation',
author_email='ptvshelp@microsoft.com',
Expand Down
2 changes: 1 addition & 1 deletion doc/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ Package name Version
azure-batch 1.1.0
azure-mgmt-batch 2.0.0
azure-mgmt-devtestlabs 1.0.0
azure-mgmt-dns 1.0.0
azure-mgmt-logic 1.0.0
azure-mgmt-redis 3.0.0
azure-mgmt-scheduler 1.1.0
Expand Down Expand Up @@ -79,7 +80,6 @@ azure-mgmt-containerregistry 0.1.1
azure-mgmt-commerce 0.30.0rc6
azure-mgmt-datalake-analytics 0.1.1
azure-mgmt-datalake-store 0.1.1
azure-mgmt-dns 0.30.0rc6
azure-mgmt-eventhub 0.1.0
azure-mgmt-iothub 0.2.0
azure-mgmt-media 0.1.1
Expand Down
3 changes: 2 additions & 1 deletion swagger_to_sdk_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@
"dns": {
"swagger": "arm-dns/2016-04-01/swagger/dns.json",
"autorest_options": {
"Namespace": "azure.mgmt.dns"
"Namespace": "azure.mgmt.dns",
"PackageVersion": "1.0.0"
},
"output_dir": "azure-mgmt-dns/azure/mgmt/dns"
},
Expand Down

0 comments on commit fc2809a

Please sign in to comment.