diff --git a/azure-storage-blob/ChangeLog.md b/azure-storage-blob/ChangeLog.md index 4a30ec21..a4146664 100644 --- a/azure-storage-blob/ChangeLog.md +++ b/azure-storage-blob/ChangeLog.md @@ -2,6 +2,9 @@ > See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks. +## Version 2.0.1: +- Updated dependency on azure-storage-common. + ## Version 2.0.0: - Support for 2018-11-09 REST version. Please see our REST API documentation and blog for information about the related added features. - Added support for append block from URL(synchronously) for append blobs. diff --git a/azure-storage-blob/azure/storage/blob/_constants.py b/azure-storage-blob/azure/storage/blob/_constants.py index 47a64c1c..062a0356 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.0' +__version__ = '2.0.1' # x-ms-version for storage service. X_MS_VERSION = '2018-11-09' diff --git a/azure-storage-blob/setup.py b/azure-storage-blob/setup.py index 7682c18e..00c7e1fc 100644 --- a/azure-storage-blob/setup.py +++ b/azure-storage-blob/setup.py @@ -44,7 +44,7 @@ setup( name='azure-storage-blob', - version='2.0.0', + version='2.0.1', description='Microsoft Azure Storage Blob Client Library for Python', long_description=open('README.rst', 'r').read(), license='MIT License', @@ -72,7 +72,7 @@ ]), install_requires=[ 'azure-common>=1.1.5', - 'azure-storage-common~=1.4' + 'azure-storage-common~=2.0' ], extras_require={ ":python_version<'3.0'": ['futures'], diff --git a/azure-storage-common/ChangeLog.md b/azure-storage-common/ChangeLog.md index 656c857d..f727a8e3 100644 --- a/azure-storage-common/ChangeLog.md +++ b/azure-storage-common/ChangeLog.md @@ -2,6 +2,9 @@ > See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks. +## Version 2.0.0: +- Bump version to avoid breaking file/blob/queue v1.5.0. + ## Version 1.4.1: - Added minor helpers for SAS related changes diff --git a/azure-storage-common/azure/storage/common/_constants.py b/azure-storage-common/azure/storage/common/_constants.py index 1bba67de..22d93b3a 100644 --- a/azure-storage-common/azure/storage/common/_constants.py +++ b/azure-storage-common/azure/storage/common/_constants.py @@ -7,7 +7,7 @@ import sys __author__ = 'Microsoft Corp. ' -__version__ = '1.4.1' +__version__ = '2.0.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 4410ce12..90d9ded2 100644 --- a/azure-storage-common/setup.py +++ b/azure-storage-common/setup.py @@ -44,7 +44,7 @@ setup( name='azure-storage-common', - version='1.4.1', + version='2.0.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 77411046..3874ccb0 100644 --- a/azure-storage-file/ChangeLog.md +++ b/azure-storage-file/ChangeLog.md @@ -2,6 +2,9 @@ > See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks. +## Version 2.0.1: +- Updated dependency on azure-storage-common. + ## Version 2.0.0: - Support for 2018-11-09 REST version. Please see our REST API documentation and blogs for information about the related added features. - Added an option to get share stats in bytes. diff --git a/azure-storage-file/azure/storage/file/_constants.py b/azure-storage-file/azure/storage/file/_constants.py index a2fa9570..da67d898 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.0' +__version__ = '2.0.1' # x-ms-version for storage service. X_MS_VERSION = '2018-11-09' diff --git a/azure-storage-file/setup.py b/azure-storage-file/setup.py index 987d22e9..c5395ca2 100644 --- a/azure-storage-file/setup.py +++ b/azure-storage-file/setup.py @@ -44,7 +44,7 @@ setup( name='azure-storage-file', - version='2.0.0', + version='2.0.1', description='Microsoft Azure Storage File Client Library for Python', long_description=open('README.rst', 'r').read(), license='MIT License', @@ -72,7 +72,7 @@ ]), install_requires=[ 'azure-common>=1.1.5', - 'azure-storage-common~=1.4' + 'azure-storage-common~=2.0' ], extras_require={ ":python_version<'3.0'": ['futures'], diff --git a/azure-storage-queue/ChangeLog.md b/azure-storage-queue/ChangeLog.md index 473744b5..962159f3 100644 --- a/azure-storage-queue/ChangeLog.md +++ b/azure-storage-queue/ChangeLog.md @@ -2,6 +2,9 @@ > See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks. +## Version 2.0.1: +- Updated dependency on azure-storage-common. + ## Version 2.0.0: - Support for 2018-11-09 REST version. diff --git a/azure-storage-queue/azure/storage/queue/_constants.py b/azure-storage-queue/azure/storage/queue/_constants.py index 9bc4428f..5c4bbd53 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.0' +__version__ = '2.0.1' # x-ms-version for storage service. X_MS_VERSION = '2018-03-28' diff --git a/azure-storage-queue/setup.py b/azure-storage-queue/setup.py index 43183bcc..a8a0ed77 100644 --- a/azure-storage-queue/setup.py +++ b/azure-storage-queue/setup.py @@ -44,7 +44,7 @@ setup( name='azure-storage-queue', - version='2.0.0', + version='2.0.1', description='Microsoft Azure Storage Queue Client Library for Python', long_description=open('README.rst', 'r').read(), license='MIT License', @@ -72,6 +72,6 @@ ]), install_requires=[ 'azure-common>=1.1.5', - 'azure-storage-common~=1.4' + 'azure-storage-common~=2.0' ], )