Skip to content

Commit

Permalink
Blobxfer 0.11.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
alfpark committed Sep 12, 2016
1 parent bc7ce44 commit e1df4ca
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 6 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.md
@@ -1,8 +1,19 @@
# Change Log

## [Unreleased]

## [0.11.3] - 2016-09-12
#### Added
- Created Docker image
- Created [Docker image](https://hub.docker.com/r/alfpark/blobxfer)

#### Changed
- Update all dependencies to latest versions

#### Fixed
- Fix `--delete` and blob listing with azure-storage

#### Security
- Update cryptography requirement to 1.5

## [0.11.2] - 2016-07-28
#### Added
Expand Down Expand Up @@ -147,6 +158,7 @@
`--no-skiponmatch`.
- 0.8.2: performance regression fixes

[Unreleased]: https://github.com/Azure/blobxfer/compare/v0.11.2...HEAD
[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
[0.11.2]: https://github.com/Azure/blobxfer/compare/e5e435a...v0.11.2

3 changes: 3 additions & 0 deletions README.rst
Expand Up @@ -51,6 +51,9 @@ Python 2.7, issue the following commands:
apt-get install -y build-essential libssl-dev libffi-dev libpython-dev python-dev python-pip
pip install --upgrade blobxfer

If you do not want to modify system-wide dependencies, use the ``--user`` flag
with ``pip``.

If you need more fine-grained control on installing dependencies, continue
reading this section. Depending upon the desired mode of authentication with
Azure and options, the script will require the following packages, some of
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.2'
_SCRIPT_VERSION = '0.11.3'
_PY2 = sys.version_info.major == 2
_DEFAULT_MAX_STORAGEACCOUNT_WORKERS = multiprocessing.cpu_count() * 3
_MAX_BLOB_CHUNK_SIZE_BYTES = 4194304
Expand Down
1 change: 1 addition & 0 deletions docker/Dockerfile
@@ -1,6 +1,7 @@
# Dockerfile for Azure/blobxfer

FROM gliderlabs/alpine:3.4
MAINTAINER Fred Park <https://github.com/Azure/blobxfer>

RUN apk add --update --no-cache musl build-base python3 python3-dev openssl-dev libffi-dev ca-certificates \
&& pip3 install --no-cache-dir --upgrade pip \
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -28,10 +28,10 @@
},
install_requires=[
'azure-common==1.1.4',
'azure-storage==0.32.0',
'azure-storage==0.33.0',
'azure-servicemanagement-legacy==0.20.3',
'cryptography>=1.4',
'requests==2.10.0'
'cryptography>=1.5',
'requests==2.11.1'
],
tests_require=['pytest'],
classifiers=[
Expand Down

0 comments on commit e1df4ca

Please sign in to comment.