diff --git a/CHANGELOG.md b/CHANGELOG.md index 2101b02..a8c1c16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## [Unreleased] -## [0.11.3] - 2016-09-12 +## [0.11.4] - 2016-09-12 #### Added - Created [Docker image](https://hub.docker.com/r/alfpark/blobxfer) @@ -158,7 +158,7 @@ `--no-skiponmatch`. - 0.8.2: performance regression fixes -[Unreleased]: https://github.com/Azure/blobxfer/compare/0.11.3...HEAD -[0.11.3]: https://github.com/Azure/blobxfer/compare/v0.11.2...0.11.3 +[Unreleased]: https://github.com/Azure/blobxfer/compare/0.11.4...HEAD +[0.11.4]: https://github.com/Azure/blobxfer/compare/v0.11.2...0.11.4 [0.11.2]: https://github.com/Azure/blobxfer/compare/e5e435a...v0.11.2 diff --git a/README.rst b/README.rst index 464eb57..8a47d62 100644 --- a/README.rst +++ b/README.rst @@ -63,16 +63,16 @@ dependent packages: - Base Requirements - `azure-common`_ == 1.1.4 - - `azure-storage`_ == 0.32.0 - - `requests`_ == 2.10.0 + - `azure-storage`_ == 0.33.0 + - `requests`_ == 2.11.1 - Encryption Support - - `cryptography`_ >= 1.4 + - `cryptography`_ >= 1.5 - Service Management Certificate Support - - `azure-servicemanagement-legacy`_ == 0.20.3 + - `azure-servicemanagement-legacy`_ == 0.20.4 You can install these packages using pip, easy_install or through standard setup.py procedures. These dependencies will be automatically installed if diff --git a/blobxfer.py b/blobxfer.py index e5c5088..dde0d7d 100755 --- a/blobxfer.py +++ b/blobxfer.py @@ -104,7 +104,7 @@ # pylint: enable=W0622,C0103 # global defines -_SCRIPT_VERSION = '0.11.3' +_SCRIPT_VERSION = '0.11.4' _PY2 = sys.version_info.major == 2 _DEFAULT_MAX_STORAGEACCOUNT_WORKERS = multiprocessing.cpu_count() * 3 _MAX_BLOB_CHUNK_SIZE_BYTES = 4194304 diff --git a/setup.py b/setup.py index ebace8d..7193e7c 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ install_requires=[ 'azure-common==1.1.4', 'azure-storage==0.33.0', - 'azure-servicemanagement-legacy==0.20.3', + 'azure-servicemanagement-legacy==0.20.4', 'cryptography>=1.5', 'requests==2.11.1' ],