Updated version number for v2.1.0 release

This commit is contained in:
zezha-msft 2019-08-01 14:22:45 -07:00
Родитель d9398e332c
Коммит ba4355f814
12 изменённых файлов: 18 добавлений и 12 удалений

Просмотреть файл

@ -2,7 +2,7 @@
> See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks.
## Version XX.XX.XX:
## Version 2.1.0:
- Support for 2019-02-02 REST version. Please see our REST API documentation and blog for information about the related added features.
- Added Batch Delete Blob API.

Просмотреть файл

@ -5,7 +5,7 @@
# --------------------------------------------------------------------------
__author__ = 'Microsoft Corp. <ptvshelp@microsoft.com>'
__version__ = '2.0.1'
__version__ = '2.1.0'
# x-ms-version for storage service.
X_MS_VERSION = '2019-02-02'

Просмотреть файл

@ -44,7 +44,7 @@ except ImportError:
setup(
name='azure-storage-blob',
version='2.0.1',
version='2.1.0',
description='Microsoft Azure Storage Blob 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 XX.XX.XX:
## Version 2.1.0:
- Support for 2019-02-02 REST version. Please see our REST API documentation and blog for information about the related added features.
- Validate that the echoed client request ID from the service matches the sent one.

Просмотреть файл

@ -7,7 +7,7 @@ import platform
import sys
__author__ = 'Microsoft Corp. <ptvshelp@microsoft.com>'
__version__ = '2.0.0'
__version__ = '2.1.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='2.0.0',
version='2.1.0',
description='Microsoft Azure Storage Common Client Library for Python',
long_description=open('README.rst', 'r').read(),
license='MIT License',

Просмотреть файл

@ -2,7 +2,9 @@
> See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks.
## Version XX.XX.XX
## Version 2.1.0:
- Support for 2019-02-02 REST version. Please see our REST API documentation and blog for information about the related added features.
- Added update_range_from_file_url API to writes the bytes from one Azure File endpoint into the specified range of another Azure File endpoint.
- Added set_directory_properties, create_permission_for_share and get_permission_for_share APIs
- Added optional parameters(file_permission, smb_properties) for create_file*, create_directory* related APIs and set_file_properties API

Просмотреть файл

@ -5,7 +5,7 @@
# --------------------------------------------------------------------------
__author__ = 'Microsoft Corp. <ptvshelp@microsoft.com>'
__version__ = '2.0.1'
__version__ = '2.1.0'
# x-ms-version for storage service.
X_MS_VERSION = '2019-02-02'

Просмотреть файл

@ -44,7 +44,7 @@ except ImportError:
setup(
name='azure-storage-file',
version='2.0.1',
version='2.1.0',
description='Microsoft Azure Storage File Client Library for Python',
long_description=open('README.rst', 'r').read(),
license='MIT License',

Просмотреть файл

@ -2,6 +2,10 @@
> See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks.
## Version 2.1.0:
- Support for 2019-02-02 REST version. No new features for Queue.
## Version 2.0.1:
- Updated dependency on azure-storage-common.

Просмотреть файл

@ -5,7 +5,7 @@
# --------------------------------------------------------------------------
__author__ = 'Microsoft Corp. <ptvshelp@microsoft.com>'
__version__ = '2.0.1'
__version__ = '2.1.0'
# x-ms-version for storage service.
X_MS_VERSION = '2018-03-28'
X_MS_VERSION = '2019-02-02'

Просмотреть файл

@ -44,7 +44,7 @@ except ImportError:
setup(
name='azure-storage-queue',
version='2.0.1',
version='2.1.0',
description='Microsoft Azure Storage Queue Client Library for Python',
long_description=open('README.rst', 'r').read(),
license='MIT License',