Skip to content
This repository was archived by the owner on Sep 28, 2020. It is now read-only.

Commit 46658a1

Browse files
author
Erik Hollensbe
committed
Box v0.5.2
Signed-off-by: Erik Hollensbe <github@hollensbe.org>
1 parent 175f11c commit 46658a1

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### v0.5.2
2+
3+
* Downgraded docker client to be more compatible with more versions of docker.
4+
15
### v0.5.1
26

37
* `entrypoint` and `cmd` now handle nils and arrays of strings appropriately.

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ test-ci: checks build-ci run-test-ci
4343

4444
test: checks all build run-test
4545

46-
release: clean all test
47-
VERSION=${VERSION} RELEASE=1 go run main.go -n -t erikh/box:${VERSION} build.rb
46+
release: clean all
47+
VERSION=${VERSION} RELEASE=1 go run main.go -n -t boxbuilder/box:${VERSION} build.rb
4848
docker rm -f box-build-${VERSION} || :
49-
docker run --name box-build-${VERSION} --entrypoint /bin/bash erikh/box:${VERSION} -c 'exit 0'
49+
docker run --name box-build-${VERSION} --entrypoint /bin/bash boxbuilder/box:${VERSION} -c 'exit 0'
5050
docker cp box-build-${VERSION}:/box .
5151
docker rm box-build-${VERSION}
5252
sh release/release.sh ${VERSION}

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
# linux/mac installer for box
33
set -e
4-
version=0.5.1
4+
version=0.5.2
55
if [ "$(uname -s)" = "Linux" ]; then
66
arch="linux"
77
else

0 commit comments

Comments
 (0)