Skip to content

Commit 1f2fef9

Browse files
committed
Incremented version to 1.4.0
1 parent 8bb4204 commit 1f2fef9

File tree

21 files changed

+105
-17
lines changed

21 files changed

+105
-17
lines changed

azure-storage-blob/ChangeLog.md

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

33
> See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks.
44
5-
## Version 1.x.x:
5+
## Version 1.4.0:
66

77
- azure-storage-nspkg is not installed anymore on Python 3 (PEP420-based namespace package)
88
- copy_blob method added to BlockBlobService to enable support for deep sync copy.

azure-storage-blob/LICENSE.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2017 Microsoft
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

azure-storage-blob/MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
include *.rst
22
include azure/__init__.py
33
include azure/storage/__init__.py
4+
include LICENCE.txt

azure-storage-blob/azure/storage/blob/_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# --------------------------------------------------------------------------
66

77
__author__ = 'Microsoft Corp. <ptvshelp@microsoft.com>'
8-
__version__ = '1.3.1'
8+
__version__ = '1.4.0'
99

1010
# x-ms-version for storage service.
1111
X_MS_VERSION = '2018-03-28'

azure-storage-blob/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
setup(
4646
name='azure-storage-blob',
47-
version='1.3.1',
47+
version='1.4.0',
4848
description='Microsoft Azure Storage Blob Client Library for Python',
4949
long_description=open('README.rst', 'r').read(),
5050
license='MIT License',
@@ -72,7 +72,7 @@
7272
]),
7373
install_requires=[
7474
'azure-common>=1.1.5',
75-
'azure-storage-common~=1.3'
75+
'azure-storage-common~=1.4'
7676
],
7777
extras_require={
7878
":python_version<'3.0'": ['futures'],

azure-storage-common/ChangeLog.md

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

33
> See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks.
44
5-
## Version XX.XX.XX:
5+
## Version 1.4.0:
66

77
- When unable to sign request, avoid wasting time on retries by failing faster.
88
- Allow the use of custom domain when creating service object targeting emulators.

azure-storage-common/LICENSE.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2017 Microsoft
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

azure-storage-common/MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
include *.rst
22
include azure/__init__.py
33
include azure/storage/__init__.py
4+
include LICENCE.txt

azure-storage-common/azure/storage/common/_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import sys
88

99
__author__ = 'Microsoft Corp. <ptvshelp@microsoft.com>'
10-
__version__ = '1.3.0'
10+
__version__ = '1.4.0'
1111

1212
# UserAgent string sample: 'Azure-Storage/0.37.0-0.38.0 (Python CPython 3.4.2; Windows 8)'
1313
# First version(0.37.0) is the common package, and the second version(0.38.0) is the service package

azure-storage-common/setup.py

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

4545
setup(
4646
name='azure-storage-common',
47-
version='1.3.0',
47+
version='1.4.0',
4848
description='Microsoft Azure Storage Common Client Library for Python',
4949
long_description=open('README.rst', 'r').read(),
5050
license='MIT License',

0 commit comments

Comments
 (0)