Skip to content

Commit

Permalink
Release 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mblaschke committed Apr 25, 2017
1 parent e857e4c commit 18770e3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Using https://godoc.org/github.com/robfig/cron
- run-parts support
- Logging to STDOUT and STDERR (instead of sending mails)
- Keep current environment (eg. for usage in Docker containers)
- Supports Linux, MacOS, ARM/ARM64 (Rasbperry Pi and others)

## Usage

Expand Down Expand Up @@ -82,7 +83,7 @@ Run crond with run-parts with custom time spec and different user:
## Installation

```bash
GOCROND_VERSION=0.2.0 \
GOCROND_VERSION=0.2.1 \
&& wget -O /usr/local/bin/go-crond https://github.com/webdevops/go-crond/releases/download/$GOREPLACE_VERSION/go-crond-64-linux \
&& chmod +x /usr/local/bin/go-crond
```
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (

const (
Author = "webdevops.io"
Version = "0.2.0"
Version = "0.2.1"
)

const (
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.2.0 \
&& GOCROND_RELEASE=0.2.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 18770e3

Please sign in to comment.