Skip to content

Commit

Permalink
Blobxfer 0.11.4 release
Browse files Browse the repository at this point in the history
- Fix botched 0.11.3 release
- Update README with new dependency info
- Fix setup.py
  • Loading branch information
alfpark committed Sep 12, 2016
1 parent e1df4ca commit 3222c60
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Expand Up @@ -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)

Expand Down Expand Up @@ -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

8 changes: 4 additions & 4 deletions README.rst
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion blobxfer.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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'
],
Expand Down

0 comments on commit 3222c60

Please sign in to comment.