From d969aef8ef7b4f340ee837a8e453d22b46769a90 Mon Sep 17 00:00:00 2001 From: Cameron Spear Date: Sat, 4 Jun 2016 15:36:30 -0700 Subject: [PATCH] Tagged v1.2.0 --- Dockerfile | 4 ++-- Makefile | 4 ++-- scripts/install.sh | 2 +- scripts/release.sh | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index e350a51..2f4bce7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ FROM alpine:latest -ENV VERSION 1.1.0 +ENV VERSION v1.2.0 ENV ARCH amd64 -ADD https://github.com/CWSpear/local-persist/releases/download/v${VERSION}/local-persist-linux-${ARCH} /usr/bin/docker-volume-local-persist +ADD https://github.com/CWSpear/local-persist/releases/download/${VERSION}/local-persist-linux-${ARCH} /usr/bin/docker-volume-local-persist RUN chmod +x /usr/bin/docker-volume-local-persist ADD https://github.com/Yelp/dumb-init/releases/download/v1.0.3/dumb-init_1.0.3_amd64 /usr/bin/dumb-init diff --git a/Makefile b/Makefile index 8e18263..f977b4e 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ binary: go build -o bin/$(BIN_NAME) -v # build all the binaries -binaries: clean-bin binary-linux-amd64 +binaries: clean-bin binary-linux-amd64 # binary-linux-386 binary-linux-arm binary-freebsd-amd64 binary-freebsd-386 clean-bin: rm -Rf bin @@ -44,7 +44,7 @@ binary-linux-amd64: # binary-linux-arm: # go build -o bin/$(GOOS)/$(GOARCH)/$(BIN_NAME) -v -# unwilling to support other architectures for now +# cowardly unwilling to support other architectures for now # binary-freebsd-amd64: export GOOS=freebsd # binary-freebsd-amd64: export GOARCH=amd64 # binary-freebsd-amd64: diff --git a/scripts/install.sh b/scripts/install.sh index 9984053..05b82d6 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -2,7 +2,7 @@ set -e -VERSION="v1.1.0" +VERSION="v1.2.0" # uname -s, uname -m # Deb 32: Linux i686 diff --git a/scripts/release.sh b/scripts/release.sh index dfee95a..f880960 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -48,6 +48,7 @@ if [[ $PRERELEASE == "" ]]; then fi sed -i '' "s|VERSION=\".*\"|VERSION=\"${RELEASE_TAG}\"|" scripts/install.sh +sed -i '' "s|ENV VERSION .*|ENV VERSION ${RELEASE_TAG}|" Dockerfile git commit -am "Tagged ${RELEASE_TAG}" git push