Skip to content
This repository was archived by the owner on Jul 18, 2024. It is now read-only.

Commit c4f0a3a

Browse files
committed
Tag for 1.2.0 release
1 parent 2ec1d6b commit c4f0a3a

File tree

6 files changed

+19
-9
lines changed

6 files changed

+19
-9
lines changed

CHANGELOG.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,20 @@
22

33
## [Unreleased]
44

5+
## [1.2.0] - 2018-04-19
6+
### Added
7+
- Support for --strip-components parameter on download (#69)
8+
- Support for -q/--quiet option to suppress output to stdout (#70)
9+
510
### Changed
611
- Update dependencies to latest
12+
- Update Windows Docker image to use Python 3.6.5
713

814
### Fixed
915
- Non-MD5 upload invalid ref (#60)
1016
- Retry of broken encrypted upload (#61)
1117
- Detect non-Base64 encoded storage account keys (#62)
18+
- Regression in download of zero-length blobs (#68)
1219

1320
## [1.1.1] - 2018-01-30
1421
### Changed
@@ -333,7 +340,8 @@ usage documentation carefully when upgrading from 0.12.1.
333340
`--no-skiponmatch`.
334341
- 0.8.2: performance regression fixes
335342

336-
[Unreleased]: https://github.com/Azure/blobxfer/compare/1.1.1...HEAD
343+
[Unreleased]: https://github.com/Azure/blobxfer/compare/1.2.0...HEAD
344+
[1.2.0]: https://github.com/Azure/blobxfer/compare/1.1.0...1.2.0
337345
[1.1.1]: https://github.com/Azure/blobxfer/compare/1.1.0...1.1.1
338346
[1.1.0]: https://github.com/Azure/blobxfer/compare/1.0.0...1.1.0
339347
[1.0.0]: https://github.com/Azure/blobxfer/compare/1.0.0rc3...1.0.0
@@ -347,5 +355,5 @@ usage documentation carefully when upgrading from 0.12.1.
347355
[0.12.1]: https://github.com/Azure/blobxfer/compare/0.12.0...0.12.1
348356
[0.12.0]: https://github.com/Azure/blobxfer/compare/0.11.5...0.12.0
349357
[0.11.5]: https://github.com/Azure/blobxfer/compare/0.11.4...0.11.5
350-
[0.11.4]: https://github.com/Azure/blobxfer/compare/v0.11.2...0.11.4
351-
[0.11.2]: https://github.com/Azure/blobxfer/compare/e5e435a...v0.11.2
358+
[0.11.4]: https://github.com/Azure/blobxfer/compare/0.11.2...0.11.4
359+
[0.11.2]: https://github.com/Azure/blobxfer/compare/e5e435a...0.11.2

appveyor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,23 +61,23 @@ after_test:
6161
if ($env:APPVEYOR_REPO_TAG -eq "true") {
6262
$env:BLOBXFER_ARTIFACT = "blobxfer-" + $env:APPVEYOR_REPO_TAG_NAME + "-win-amd64.exe"
6363
$env:UPLOAD_PATH="releases/" + $env:APPVEYOR_REPO_TAG_NAME
64-
$env:BUILDVER_DOTTED = $env:APPVEYOR_REPO_TAG
64+
$env:BUILDVER_DOTTED = $env:APPVEYOR_REPO_TAG_NAME
6565
}
6666
else {
6767
if ($env:APPVEYOR_REPO_BRANCH -eq "master" -Or $env:APPVEYOR_REPO_BRANCH -eq "develop") {
6868
$env:BLOBXFER_ARTIFACT = "blobxfer-" + $env:APPVEYOR_REPO_BRANCH + "-" + $env:APPVEYOR_BUILD_NUMBER + "-win-amd64.exe"
6969
$env:UPLOAD_PATH="builds/" + $env:APPVEYOR_REPO_BRANCH
70-
$env:BUILDVER_DOTTED = [string]::Format("0.0.0.{0}",$env:APPVEYOR_BUILD_NUMBER)
70+
$env:BUILDVER_DOTTED = [string]::Format("0.0.{0}",$env:APPVEYOR_BUILD_NUMBER)
7171
}
7272
else {
7373
Write-Host "Invalid tag or branch $env:APPVEYOR_REPO_BRANCH to build binary"
7474
return
7575
}
7676
}
7777
78-
$bvt0,$bvt1,$bvt2,$bvt3 = $env:BUILDVER_DOTTED.split('.')
78+
$bvt0,$bvt1,$bvt2 = $env:BUILDVER_DOTTED.split('.')
7979
80-
$env:BUILDVER_TUPLE = [string]::Format("({0}, {1}, {2}, {3})",$bvt0,$bvt1,$bvt2,$bvt3)
80+
$env:BUILDVER_TUPLE = [string]::Format("({0}, {1}, {2}, 0)",$bvt0,$bvt1,$bvt2)
8181
8282
$env:BRANCH_GITSHA1 = [string]::Format("{0}@{1}",$env:APPVEYOR_REPO_BRANCH,$env:APPVEYOR_REPO_COMMIT.Substring(0,7))
8383

blobxfer/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
2323
# DEALINGS IN THE SOFTWARE.
2424

25-
__version__ = '1.1.1'
25+
__version__ = '1.2.0'

docker/linux/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ RUN apk update \
1616
&& pip3 install --no-cache-dir -e . \
1717
&& python3 setup.py install \
1818
&& cp THIRD_PARTY_NOTICES.txt /BLOBXFER_THIRD_PARTY_NOTICES.txt \
19+
&& cp LICENSE /BLOBXFER_LICENSE.txt \
1920
&& cd / \
2021
&& rm -rf blobxfer \
2122
&& apk del --purge build-base python3-dev libressl-dev libffi-dev git \

docker/win/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ FROM microsoft/nanoserver
2424

2525
COPY --from=0 /Python /Python
2626
COPY --from=0 /blobxfer/THIRD_PARTY_NOTICES.txt /BLOBXFER_THIRD_PARTY_NOTICES.txt
27+
COPY --from=0 /blobxfer/LICENSE /BLOBXFER_LICENSE.txt
2728

2829
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
2930

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
'click==6.7',
4141
'cryptography>=2.2.2',
4242
'future==0.16.0',
43-
'pathlib2==2.3.0;python_version<"3.5"',
43+
'pathlib2==2.3.2;python_version<"3.5"',
4444
'python-dateutil==2.7.2',
4545
'requests==2.18.4',
4646
'ruamel.yaml==0.15.37',

0 commit comments

Comments
 (0)