diff --git a/azure-storage-blob/ChangeLog.md b/azure-storage-blob/ChangeLog.md index 90c3fb77..955aab5b 100644 --- a/azure-storage-blob/ChangeLog.md +++ b/azure-storage-blob/ChangeLog.md @@ -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. diff --git a/azure-storage-blob/azure/storage/blob/_constants.py b/azure-storage-blob/azure/storage/blob/_constants.py index c951c7df..f02e6d2a 100644 --- a/azure-storage-blob/azure/storage/blob/_constants.py +++ b/azure-storage-blob/azure/storage/blob/_constants.py @@ -5,7 +5,7 @@ # -------------------------------------------------------------------------- __author__ = 'Microsoft Corp. ' -__version__ = '2.0.1' +__version__ = '2.1.0' # x-ms-version for storage service. X_MS_VERSION = '2019-02-02' diff --git a/azure-storage-blob/setup.py b/azure-storage-blob/setup.py index 00c7e1fc..03eb2062 100644 --- a/azure-storage-blob/setup.py +++ b/azure-storage-blob/setup.py @@ -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', diff --git a/azure-storage-common/ChangeLog.md b/azure-storage-common/ChangeLog.md index dbbc882e..0666f3e3 100644 --- a/azure-storage-common/ChangeLog.md +++ b/azure-storage-common/ChangeLog.md @@ -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. diff --git a/azure-storage-common/azure/storage/common/_constants.py b/azure-storage-common/azure/storage/common/_constants.py index a3457926..e0dd5763 100644 --- a/azure-storage-common/azure/storage/common/_constants.py +++ b/azure-storage-common/azure/storage/common/_constants.py @@ -7,7 +7,7 @@ import platform import sys __author__ = 'Microsoft Corp. ' -__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 diff --git a/azure-storage-common/setup.py b/azure-storage-common/setup.py index 90d9ded2..a4769fc7 100644 --- a/azure-storage-common/setup.py +++ b/azure-storage-common/setup.py @@ -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', diff --git a/azure-storage-file/ChangeLog.md b/azure-storage-file/ChangeLog.md index 350f7f2d..3e5111cd 100644 --- a/azure-storage-file/ChangeLog.md +++ b/azure-storage-file/ChangeLog.md @@ -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 diff --git a/azure-storage-file/azure/storage/file/_constants.py b/azure-storage-file/azure/storage/file/_constants.py index 9cc27adc..d71baea3 100644 --- a/azure-storage-file/azure/storage/file/_constants.py +++ b/azure-storage-file/azure/storage/file/_constants.py @@ -5,7 +5,7 @@ # -------------------------------------------------------------------------- __author__ = 'Microsoft Corp. ' -__version__ = '2.0.1' +__version__ = '2.1.0' # x-ms-version for storage service. X_MS_VERSION = '2019-02-02' diff --git a/azure-storage-file/setup.py b/azure-storage-file/setup.py index c5395ca2..2e81892e 100644 --- a/azure-storage-file/setup.py +++ b/azure-storage-file/setup.py @@ -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', diff --git a/azure-storage-queue/ChangeLog.md b/azure-storage-queue/ChangeLog.md index 962159f3..87be7701 100644 --- a/azure-storage-queue/ChangeLog.md +++ b/azure-storage-queue/ChangeLog.md @@ -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. diff --git a/azure-storage-queue/azure/storage/queue/_constants.py b/azure-storage-queue/azure/storage/queue/_constants.py index 5c4bbd53..d71baea3 100644 --- a/azure-storage-queue/azure/storage/queue/_constants.py +++ b/azure-storage-queue/azure/storage/queue/_constants.py @@ -5,7 +5,7 @@ # -------------------------------------------------------------------------- __author__ = 'Microsoft Corp. ' -__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' diff --git a/azure-storage-queue/setup.py b/azure-storage-queue/setup.py index a8a0ed77..334d24a0 100644 --- a/azure-storage-queue/setup.py +++ b/azure-storage-queue/setup.py @@ -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',