From 022ed69b8e2765df25bc85d24cd405d4e4778be5 Mon Sep 17 00:00:00 2001 From: Joern Barthel Date: Tue, 23 Dec 2014 15:11:29 +0100 Subject: [PATCH] Release 0.0.5. --- Makefile | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1540b0c..ade4a6a 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ TOKEN = `cat .token` REPO := envplate USER := kreuzwerker -VERSION := "v0.0.4" +VERSION := "v0.0.5" build: mkdir -p out/darwin out/linux diff --git a/README.md b/README.md index 9b92924..83422ee 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ For apps running Docker which rely (fully or partially) on configuration files i You can directly download envplate binaries into your Dockerfile using Github releases like this: ``` -RUN curl -sLo /usr/local/bin/ep https://github.com/kreuzwerker/envplate/releases/download/v0.0.4/ep-linux && chmod +x /usr/local/bin/ep +RUN curl -sLo /usr/local/bin/ep https://github.com/kreuzwerker/envplate/releases/download/v0.0.5/ep-linux && chmod +x /usr/local/bin/ep ...