Skip to content

Commit bc1e1e7

Browse files
author
Hugues Valois
committed
Merge pull request Azure#486 from huguesv/102
Increment version and add change log for azure==1.0.2
2 parents 2803e01 + 80036e5 commit bc1e1e7

File tree

10 files changed

+32
-16
lines changed

10 files changed

+32
-16
lines changed

ChangeLog.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
2015-10-02 Version 1.0.2
2+
3+
azure-mgmt-network 0.20.1
4+
* Fix retry timeout default value for long running operations
5+
6+
azure-mgmt-resource 0.20.1
7+
* Add missing model class ResourceIdentity
8+
* Add documentation examples for generic resource creation and deployment
9+
using JSON templates
10+
11+
azure-storage 0.20.2
12+
* Fix SAS encoding to work with premium storage
13+
14+
Thank you to aarsan, trondhindenes for their contributions.
15+
16+
117
2015-09-14 Version 1.0.1
218

319
* Use requests library by default in all libraries

azure-mgmt-network/azure/mgmt/network/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
#--------------------------------------------------------------------------
1515

1616
__author__ = 'Microsoft Corp. <ptvshelp@microsoft.com>'
17-
__version__ = '0.20.0'
17+
__version__ = '0.20.1'
1818

1919
from .networkresourceprovider import *

azure-mgmt-network/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
setup(
3636
name='azure-mgmt-network',
37-
version='0.20.0',
37+
version='0.20.1',
3838
description='Microsoft Azure Network Resource Management Client Library for Python',
3939
long_description=open('README.rst', 'r').read(),
4040
license='Apache License 2.0',

azure-mgmt-resource/azure/mgmt/resource/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
#--------------------------------------------------------------------------
1515

1616
__author__ = 'Microsoft Corp. <ptvshelp@microsoft.com>'
17-
__version__ = '0.20.0'
17+
__version__ = '0.20.1'
1818

1919
from .resourcemanagement import *

azure-mgmt-resource/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
setup(
3636
name='azure-mgmt-resource',
37-
version='0.20.0',
37+
version='0.20.1',
3838
description='Microsoft Azure Resource Management Client Library for Python',
3939
long_description=open('README.rst', 'r').read(),
4040
license='Apache License 2.0',

azure-mgmt/README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ This version of the Azure Management package bundle consists of the
6161
following packages. Follow the links for more information on each package.
6262

6363
- `azure-mgmt-compute v0.20.0 <https://pypi.python.org/pypi/azure-mgmt-compute/0.20.0>`__
64-
- `azure-mgmt-network v0.20.0 <https://pypi.python.org/pypi/azure-mgmt-network/0.20.0>`__
65-
- `azure-mgmt-resource v0.20.0 <https://pypi.python.org/pypi/azure-mgmt-resource/0.20.0>`__
64+
- `azure-mgmt-network v0.20.1 <https://pypi.python.org/pypi/azure-mgmt-network/0.20.1>`__
65+
- `azure-mgmt-resource v0.20.1 <https://pypi.python.org/pypi/azure-mgmt-resource/0.20.1>`__
6666
- `azure-mgmt-storage v0.20.0 <https://pypi.python.org/pypi/azure-mgmt-storage/0.20.0>`__
6767

6868
Note that if you don't need all of these packages, you can install/uninstall them individually.

azure-mgmt/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
setup(
3636
name='azure-mgmt',
37-
version='0.20.0',
37+
version='0.20.1',
3838
description='Microsoft Azure Resource Management Client Libraries for Python',
3939
long_description=open('README.rst', 'r').read(),
4040
license='Apache License 2.0',
@@ -54,8 +54,8 @@
5454
zip_safe=False,
5555
install_requires=[
5656
'azure-mgmt-compute==0.20.0',
57-
'azure-mgmt-network==0.20.0',
58-
'azure-mgmt-resource==0.20.0',
57+
'azure-mgmt-network==0.20.1',
58+
'azure-mgmt-resource==0.20.1',
5959
'azure-mgmt-storage==0.20.0',
6060
],
6161
)

azure/README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ Features
1515
This version of the Azure package bundle consists of the following
1616
packages. Follow the links for more information on each package.
1717

18-
- `azure-mgmt v0.20.0 <https://pypi.python.org/pypi/azure-mgmt/0.20.0>`__
18+
- `azure-mgmt v0.20.1 <https://pypi.python.org/pypi/azure-mgmt/0.20.1>`__
1919
- `azure-servicebus v0.20.1 <https://pypi.python.org/pypi/azure-servicebus/0.20.1>`__
2020
- `azure-servicemanagement-legacy v0.20.1 <https://pypi.python.org/pypi/azure-servicemanagement-legacy/0.20.1>`__
21-
- `azure-storage v0.20.1 <https://pypi.python.org/pypi/azure-storage/0.20.1>`__
21+
- `azure-storage v0.20.2 <https://pypi.python.org/pypi/azure-storage/0.20.2>`__
2222

2323
Note that if you don't need all of these packages, you can install/uninstall them individually.
2424

azure/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
setup(
3737
name='azure',
38-
version='1.0.1',
38+
version='1.0.2',
3939
description='Microsoft Azure Client Libraries for Python',
4040
long_description=open('README.rst', 'r').read(),
4141
license='Apache License 2.0',
@@ -54,9 +54,9 @@
5454
],
5555
zip_safe=False,
5656
install_requires=[
57-
'azure-mgmt==0.20.0',
57+
'azure-mgmt==0.20.1',
5858
'azure-servicebus==0.20.1',
59-
'azure-storage==0.20.1',
59+
'azure-storage==0.20.2',
6060
'azure-servicemanagement-legacy==0.20.1',
6161
],
6262
)

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@
5353
# built documents.
5454
#
5555
# The short X.Y version.
56-
version = '1.0.1'
56+
version = '1.0.2'
5757
# The full version, including alpha/beta/rc tags.
58-
release = '1.0.1'
58+
release = '1.0.2'
5959

6060
# The language for content autogenerated by Sphinx. Refer to documentation
6161
# for a list of supported languages.

0 commit comments

Comments
 (0)