File tree Expand file tree Collapse file tree 10 files changed +32
-16
lines changed Expand file tree Collapse file tree 10 files changed +32
-16
lines changed Original file line number Diff line number Diff line change
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
+
1
17
2015-09-14 Version 1.0.1
2
18
3
19
* Use requests library by default in all libraries
Original file line number Diff line number Diff line change 14
14
#--------------------------------------------------------------------------
15
15
16
16
__author__ = 'Microsoft Corp. <ptvshelp@microsoft.com>'
17
- __version__ = '0.20.0 '
17
+ __version__ = '0.20.1 '
18
18
19
19
from .networkresourceprovider import *
Original file line number Diff line number Diff line change 34
34
35
35
setup (
36
36
name = 'azure-mgmt-network' ,
37
- version = '0.20.0 ' ,
37
+ version = '0.20.1 ' ,
38
38
description = 'Microsoft Azure Network Resource Management Client Library for Python' ,
39
39
long_description = open ('README.rst' , 'r' ).read (),
40
40
license = 'Apache License 2.0' ,
Original file line number Diff line number Diff line change 14
14
#--------------------------------------------------------------------------
15
15
16
16
__author__ = 'Microsoft Corp. <ptvshelp@microsoft.com>'
17
- __version__ = '0.20.0 '
17
+ __version__ = '0.20.1 '
18
18
19
19
from .resourcemanagement import *
Original file line number Diff line number Diff line change 34
34
35
35
setup (
36
36
name = 'azure-mgmt-resource' ,
37
- version = '0.20.0 ' ,
37
+ version = '0.20.1 ' ,
38
38
description = 'Microsoft Azure Resource Management Client Library for Python' ,
39
39
long_description = open ('README.rst' , 'r' ).read (),
40
40
license = 'Apache License 2.0' ,
Original file line number Diff line number Diff line change @@ -61,8 +61,8 @@ This version of the Azure Management package bundle consists of the
61
61
following packages. Follow the links for more information on each package.
62
62
63
63
- `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 >`__
66
66
- `azure-mgmt-storage v0.20.0 <https://pypi.python.org/pypi/azure-mgmt-storage/0.20.0 >`__
67
67
68
68
Note that if you don't need all of these packages, you can install/uninstall them individually.
Original file line number Diff line number Diff line change 34
34
35
35
setup (
36
36
name = 'azure-mgmt' ,
37
- version = '0.20.0 ' ,
37
+ version = '0.20.1 ' ,
38
38
description = 'Microsoft Azure Resource Management Client Libraries for Python' ,
39
39
long_description = open ('README.rst' , 'r' ).read (),
40
40
license = 'Apache License 2.0' ,
54
54
zip_safe = False ,
55
55
install_requires = [
56
56
'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 ' ,
59
59
'azure-mgmt-storage==0.20.0' ,
60
60
],
61
61
)
Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ Features
15
15
This version of the Azure package bundle consists of the following
16
16
packages. Follow the links for more information on each package.
17
17
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 >`__
19
19
- `azure-servicebus v0.20.1 <https://pypi.python.org/pypi/azure-servicebus/0.20.1 >`__
20
20
- `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 >`__
22
22
23
23
Note that if you don't need all of these packages, you can install/uninstall them individually.
24
24
Original file line number Diff line number Diff line change 35
35
36
36
setup (
37
37
name = 'azure' ,
38
- version = '1.0.1 ' ,
38
+ version = '1.0.2 ' ,
39
39
description = 'Microsoft Azure Client Libraries for Python' ,
40
40
long_description = open ('README.rst' , 'r' ).read (),
41
41
license = 'Apache License 2.0' ,
54
54
],
55
55
zip_safe = False ,
56
56
install_requires = [
57
- 'azure-mgmt==0.20.0 ' ,
57
+ 'azure-mgmt==0.20.1 ' ,
58
58
'azure-servicebus==0.20.1' ,
59
- 'azure-storage==0.20.1 ' ,
59
+ 'azure-storage==0.20.2 ' ,
60
60
'azure-servicemanagement-legacy==0.20.1' ,
61
61
],
62
62
)
Original file line number Diff line number Diff line change 53
53
# built documents.
54
54
#
55
55
# The short X.Y version.
56
- version = '1.0.1 '
56
+ version = '1.0.2 '
57
57
# The full version, including alpha/beta/rc tags.
58
- release = '1.0.1 '
58
+ release = '1.0.2 '
59
59
60
60
# The language for content autogenerated by Sphinx. Refer to documentation
61
61
# for a list of supported languages.
You can’t perform that action at this time.
0 commit comments