Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions azure-storage-blob/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion azure-storage-blob/azure/storage/blob/_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# --------------------------------------------------------------------------

__author__ = 'Microsoft Corp. <ptvshelp@microsoft.com>'
__version__ = '2.0.0'
__version__ = '2.0.1'

# x-ms-version for storage service.
X_MS_VERSION = '2018-11-09'
Expand Down
4 changes: 2 additions & 2 deletions azure-storage-blob/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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'],
Expand Down
3 changes: 3 additions & 0 deletions azure-storage-common/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion azure-storage-common/azure/storage/common/_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import sys

__author__ = 'Microsoft Corp. <ptvshelp@microsoft.com>'
__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
Expand Down
2 changes: 1 addition & 1 deletion azure-storage-common/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
3 changes: 3 additions & 0 deletions azure-storage-file/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion azure-storage-file/azure/storage/file/_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# --------------------------------------------------------------------------

__author__ = 'Microsoft Corp. <ptvshelp@microsoft.com>'
__version__ = '2.0.0'
__version__ = '2.0.1'

# x-ms-version for storage service.
X_MS_VERSION = '2018-11-09'
4 changes: 2 additions & 2 deletions azure-storage-file/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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'],
Expand Down
3 changes: 3 additions & 0 deletions azure-storage-queue/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion azure-storage-queue/azure/storage/queue/_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# --------------------------------------------------------------------------

__author__ = 'Microsoft Corp. <ptvshelp@microsoft.com>'
__version__ = '2.0.0'
__version__ = '2.0.1'

# x-ms-version for storage service.
X_MS_VERSION = '2018-03-28'
4 changes: 2 additions & 2 deletions azure-storage-queue/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -72,6 +72,6 @@
]),
install_requires=[
'azure-common>=1.1.5',
'azure-storage-common~=1.4'
'azure-storage-common~=2.0'
],
)