Skip to content

Commit

Permalink
Release version 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mblaschke committed May 25, 2017
1 parent 62956fd commit c53d8f4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
const (
Name = "go-crond"
Author = "webdevops.io"
Version = "0.5.0"
Version = "0.5.1"
LogPrefix = "go-crond: "
)

Expand Down
2 changes: 1 addition & 1 deletion release/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c53d8f4

Please sign in to comment.