Skip to content

Commit

Permalink
azure-servicefabric 6.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lmazuel committed Sep 28, 2017
1 parent 0adb1ce commit 3c2d296
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions azure-servicefabric/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
Release History
===============

6.0.1 (2017-09-28)
++++++++++++++++++

**Bug fix**

- Fix some unexpected exceptions

6.0 (2017-09-22)
++++++++++++++++

Expand Down
4 changes: 2 additions & 2 deletions azure-servicefabric/README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Microsoft Azure SDK for Python
==============================

This is the Microsoft Azure ServiceFabric Client Library.
This is the Microsoft Azure Service Fabric Client Library.

Azure Resource Manager (ARM) is the next generation of management APIs that
replace the old Azure Service Management (ASM).
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 `ServiceFabric
For code examples, see `Service Fabric
<https://azure-sdk-for-python.readthedocs.org/en/latest/sample_azure-servicefabric.html>`__
on readthedocs.org.

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

VERSION = "6"
VERSION = "6.0.1"

10 changes: 5 additions & 5 deletions azure-servicefabric/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

# Change the PACKAGE_NAME only to change folder and different name
PACKAGE_NAME = "azure-servicefabric"
PACKAGE_PPRINT_NAME = "ServiceFabric"
PACKAGE_PPRINT_NAME = "Service Fabric"

# a-b-c => a/b/c
package_folder_path = PACKAGE_NAME.replace('-', '/')
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=[
'msrestazure~=0.4.7',
'azure-common~=1.1.5',
'msrest~=0.4.11',
'azure-common~=1.1',
],
cmdclass=cmdclass
)
2 changes: 1 addition & 1 deletion swagger_to_sdk_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@
"autorest_options": {
"input-file": "specification/servicefabric/data-plane/Microsoft.ServiceFabric/6.0/servicefabric.json",
"namespace": "azure.servicefabric",
"package-version": "6.0",
"package-version": "6.0.1",
"add-credentials": true,
"azure-arm": false
},
Expand Down

0 comments on commit 3c2d296

Please sign in to comment.