Skip to content

Commit ba4355f

Browse files
committed
Updated version number for v2.1.0 release
1 parent d9398e3 commit ba4355f

File tree

12 files changed

+18
-12
lines changed

12 files changed

+18
-12
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 XX.XX.XX:
5+
## Version 2.1.0:
66

77
- Support for 2019-02-02 REST version. Please see our REST API documentation and blog for information about the related added features.
88
- Added Batch Delete Blob API.

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__ = '2.0.1'
8+
__version__ = '2.1.0'
99

1010
# x-ms-version for storage service.
1111
X_MS_VERSION = '2019-02-02'

azure-storage-blob/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-blob',
47-
version='2.0.1',
47+
version='2.1.0',
4848
description='Microsoft Azure Storage Blob Client Library for Python',
4949
long_description=open('README.rst', 'r').read(),
5050
license='MIT License',

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 2.1.0:
66

77
- Support for 2019-02-02 REST version. Please see our REST API documentation and blog for information about the related added features.
88
- Validate that the echoed client request ID from the service matches the sent one.

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__ = '2.0.0'
10+
__version__ = '2.1.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='2.0.0',
47+
version='2.1.0',
4848
description='Microsoft Azure Storage Common Client Library for Python',
4949
long_description=open('README.rst', 'r').read(),
5050
license='MIT License',

azure-storage-file/ChangeLog.md

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

33
> See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks.
44
5-
## Version XX.XX.XX
5+
## Version 2.1.0:
6+
7+
- Support for 2019-02-02 REST version. Please see our REST API documentation and blog for information about the related added features.
68
- 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.
79
- Added set_directory_properties, create_permission_for_share and get_permission_for_share APIs
810
- Added optional parameters(file_permission, smb_properties) for create_file*, create_directory* related APIs and set_file_properties API

azure-storage-file/azure/storage/file/_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__ = '2.0.1'
8+
__version__ = '2.1.0'
99

1010
# x-ms-version for storage service.
1111
X_MS_VERSION = '2019-02-02'

azure-storage-file/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-file',
47-
version='2.0.1',
47+
version='2.1.0',
4848
description='Microsoft Azure Storage File Client Library for Python',
4949
long_description=open('README.rst', 'r').read(),
5050
license='MIT License',

azure-storage-queue/ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
> See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks.
44
5+
## Version 2.1.0:
6+
7+
- Support for 2019-02-02 REST version. No new features for Queue.
8+
59
## Version 2.0.1:
610
- Updated dependency on azure-storage-common.
711

0 commit comments

Comments
 (0)