Incremented version to 1.4.0
This commit is contained in:
Родитель
8bb4204430
Коммит
1f2fef9e9e
|
@ -2,7 +2,7 @@
|
|||
|
||||
> See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks.
|
||||
|
||||
## Version 1.x.x:
|
||||
## Version 1.4.0:
|
||||
|
||||
- azure-storage-nspkg is not installed anymore on Python 3 (PEP420-based namespace package)
|
||||
- copy_blob method added to BlockBlobService to enable support for deep sync copy.
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2017 Microsoft
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
|
@ -1,3 +1,4 @@
|
|||
include *.rst
|
||||
include azure/__init__.py
|
||||
include azure/storage/__init__.py
|
||||
include LICENCE.txt
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
# --------------------------------------------------------------------------
|
||||
|
||||
__author__ = 'Microsoft Corp. <ptvshelp@microsoft.com>'
|
||||
__version__ = '1.3.1'
|
||||
__version__ = '1.4.0'
|
||||
|
||||
# x-ms-version for storage service.
|
||||
X_MS_VERSION = '2018-03-28'
|
||||
|
|
|
@ -44,7 +44,7 @@ except ImportError:
|
|||
|
||||
setup(
|
||||
name='azure-storage-blob',
|
||||
version='1.3.1',
|
||||
version='1.4.0',
|
||||
description='Microsoft Azure Storage Blob Client Library for Python',
|
||||
long_description=open('README.rst', 'r').read(),
|
||||
license='MIT License',
|
||||
|
@ -72,7 +72,7 @@ setup(
|
|||
]),
|
||||
install_requires=[
|
||||
'azure-common>=1.1.5',
|
||||
'azure-storage-common~=1.3'
|
||||
'azure-storage-common~=1.4'
|
||||
],
|
||||
extras_require={
|
||||
":python_version<'3.0'": ['futures'],
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
> See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks.
|
||||
|
||||
## Version XX.XX.XX:
|
||||
## Version 1.4.0:
|
||||
|
||||
- When unable to sign request, avoid wasting time on retries by failing faster.
|
||||
- Allow the use of custom domain when creating service object targeting emulators.
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2017 Microsoft
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
|
@ -1,3 +1,4 @@
|
|||
include *.rst
|
||||
include azure/__init__.py
|
||||
include azure/storage/__init__.py
|
||||
include LICENCE.txt
|
||||
|
|
|
@ -7,7 +7,7 @@ import platform
|
|||
import sys
|
||||
|
||||
__author__ = 'Microsoft Corp. <ptvshelp@microsoft.com>'
|
||||
__version__ = '1.3.0'
|
||||
__version__ = '1.4.0'
|
||||
|
||||
# UserAgent string sample: 'Azure-Storage/0.37.0-0.38.0 (Python CPython 3.4.2; Windows 8)'
|
||||
# First version(0.37.0) is the common package, and the second version(0.38.0) is the service package
|
||||
|
|
|
@ -44,7 +44,7 @@ except ImportError:
|
|||
|
||||
setup(
|
||||
name='azure-storage-common',
|
||||
version='1.3.0',
|
||||
version='1.4.0',
|
||||
description='Microsoft Azure Storage Common Client Library for Python',
|
||||
long_description=open('README.rst', 'r').read(),
|
||||
license='MIT License',
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
> See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks.
|
||||
|
||||
## Version 1.x.x:
|
||||
## Version 1.4.0:
|
||||
|
||||
- azure-storage-nspkg is not installed anymore on Python 3 (PEP420-based namespace package)
|
||||
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2017 Microsoft
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
|
@ -1,3 +1,4 @@
|
|||
include *.rst
|
||||
include azure/__init__.py
|
||||
include azure/storage/__init__.py
|
||||
include LICENCE.txt
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
# --------------------------------------------------------------------------
|
||||
|
||||
__author__ = 'Microsoft Corp. <ptvshelp@microsoft.com>'
|
||||
__version__ = '1.3.1'
|
||||
__version__ = '1.4.0'
|
||||
|
||||
# x-ms-version for storage service.
|
||||
X_MS_VERSION = '2018-03-28'
|
||||
|
|
|
@ -44,7 +44,7 @@ except ImportError:
|
|||
|
||||
setup(
|
||||
name='azure-storage-file',
|
||||
version='1.3.1',
|
||||
version='1.4.0',
|
||||
description='Microsoft Azure Storage File Client Library for Python',
|
||||
long_description=open('README.rst', 'r').read(),
|
||||
license='MIT License',
|
||||
|
@ -72,7 +72,7 @@ setup(
|
|||
]),
|
||||
install_requires=[
|
||||
'azure-common>=1.1.5',
|
||||
'azure-storage-common~=1.3'
|
||||
'azure-storage-common~=1.4'
|
||||
],
|
||||
extras_require={
|
||||
":python_version<'3.0'": ['futures'],
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
> See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks.
|
||||
|
||||
## Version 1.x.x:
|
||||
## Version 1.4.0:
|
||||
|
||||
- azure-storage-nspkg is not installed anymore on Python 3 (PEP420-based namespace package)
|
||||
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2017 Microsoft
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
|
@ -1,3 +1,4 @@
|
|||
include *.rst
|
||||
include azure/__init__.py
|
||||
include azure/storage/__init__.py
|
||||
include LICENCE.txt
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
# --------------------------------------------------------------------------
|
||||
|
||||
__author__ = 'Microsoft Corp. <ptvshelp@microsoft.com>'
|
||||
__version__ = '1.3.0'
|
||||
__version__ = '1.4.0'
|
||||
|
||||
# x-ms-version for storage service.
|
||||
X_MS_VERSION = '2018-03-28'
|
||||
|
|
|
@ -44,7 +44,7 @@ except ImportError:
|
|||
|
||||
setup(
|
||||
name='azure-storage-queue',
|
||||
version='1.3.0',
|
||||
version='1.4.0',
|
||||
description='Microsoft Azure Storage Queue Client Library for Python',
|
||||
long_description=open('README.rst', 'r').read(),
|
||||
license='MIT License',
|
||||
|
@ -72,6 +72,6 @@ setup(
|
|||
]),
|
||||
install_requires=[
|
||||
'azure-common>=1.1.5',
|
||||
'azure-storage-common>=1.3.0,<1.4.0'
|
||||
'azure-storage-common~=1.4'
|
||||
],
|
||||
)
|
||||
|
|
|
@ -57,9 +57,9 @@ copyright = u'2015, Microsoft'
|
|||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '1.3.0'
|
||||
version = '1.4.0'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '1.3.0'
|
||||
release = '1.4.0'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
Загрузка…
Ссылка в новой задаче