Skip to content

Commit

Permalink
Release version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mblaschke committed Jun 1, 2017
1 parent f094e1f commit c03c151
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 3 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Change Log

## [Unreleased]

## [0.6.0] - 2017-06-01
- Switching of current working directory to / (root) when running cronjobs
- Add cronjob elapsed time in log
- Improve distribution detection and automatic fallback
- Switch from dynamic to static linking by default (dynamic is still available with `-dynamic` suffix)
- Replaced and reversed ` --system-defaults` to `--no-auto` (will now disable including of system default crontabs)
- Remove `--threads` (use env var `GOMAXPROCS` instead)

## [0.5.1] - 2017-05-26
- Fix crosscompiled binaries

## [0.5.0] - 2017-05-25
- Add daemon reload on SIGHUP
- Add `--allow-unprivileged` for running without root rights and without user switching capability

## [0.4.0] - 2017-05-13
- Replace `--processes` with `--threads`
- Fix argument parsing (segfault if invalid argument/option is passed)
- Include `/etc/cron.d/` as system defaults
- Improve logging

## [0.3.0] - 2017-04-28
- Add `--dumpversion`
- Add user support for `--run-parts`

## [0.2.0] - 2017-04-25
*Development release*

## [0.1.0] - 2017-04-25
*Development release*
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.1 \
GOCROND_VERSION=0.6.0 \
&& 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 @@ -14,7 +14,7 @@ import (
const (
Name = "go-crond"
Author = "webdevops.io"
Version = "0.5.1"
Version = "0.6.0"
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.1 \
&& GOCROND_RELEASE=0.6.0 \
&& 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 c03c151

Please sign in to comment.