From c53d8f475a8e1b5963d1917eeca2685d03c1cb7e Mon Sep 17 00:00:00 2001 From: Markus Blaschke Date: Fri, 26 May 2017 01:09:18 +0200 Subject: [PATCH] Release version 0.5.1 --- README.md | 2 +- main.go | 2 +- release/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3d632e2..0b381bb 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ Run crond with run-parts with custom time spec and different user: ## Installation ```bash -GOCROND_VERSION=0.5.0 \ +GOCROND_VERSION=0.5.1 \ && wget -O "/usr/local/bin/go-crond https://github.com/webdevops/go-crond/releases/download/$GOCROND_VERSION/go-crond-64-linux" \ && chmod +x /usr/local/bin/go-crond ``` diff --git a/main.go b/main.go index fcc422a..4b31529 100644 --- a/main.go +++ b/main.go @@ -16,7 +16,7 @@ import ( const ( Name = "go-crond" Author = "webdevops.io" - Version = "0.5.0" + Version = "0.5.1" LogPrefix = "go-crond: " ) diff --git a/release/Dockerfile b/release/Dockerfile index 573311d..1575e93 100644 --- a/release/Dockerfile +++ b/release/Dockerfile @@ -3,7 +3,7 @@ FROM alpine RUN apk --no-cache add --virtual .gocrond-deps \ ca-certificates \ wget \ - && GOCROND_RELEASE=0.5.0 \ + && GOCROND_RELEASE=0.5.1 \ && wget -O /usr/local/bin/go-crond https://github.com/webdevops/go-crond/releases/download/$GOCROND_RELEASE/go-crond-64-linux \ && chmod +x /usr/local/bin/go-crond \ && apk del .gocrond-deps