Skip to content

Commit 216f883

Browse files
committed
v1.5.0 release for Blob
1 parent f97958b commit 216f883

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

azure-storage-blob/ChangeLog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,17 @@
22

33
> See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks.
44
5+
## Version 1.5.0:
6+
7+
- Added new method list_blob_names to efficiently list only blob names in an efficient way.
8+
59
## Version 1.4.0:
610

711
- azure-storage-nspkg is not installed anymore on Python 3 (PEP420-based namespace package)
812
- copy_blob method added to BlockBlobService to enable support for deep sync copy.
913

1014
## Version 1.3.1:
15+
1116
- Fixed design flaw where get_blob_to_* methods buffer entire blob when max_connections is set to 1.
1217
- Added support for access conditions on append_blob_from_* methods.
1318

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__ = '1.4.0'
8+
__version__ = '1.5.0'
99

1010
# x-ms-version for storage service.
1111
X_MS_VERSION = '2018-03-28'

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

0 commit comments

Comments
 (0)