From c03c151fe80587f0f5f1ea008245a9473b859d3e Mon Sep 17 00:00:00 2001 From: Markus Blaschke Date: Thu, 1 Jun 2017 21:32:18 +0200 Subject: [PATCH] Release version 0.6.0 --- CHANGELOG.md | 34 ++++++++++++++++++++++++++++++++++ README.md | 2 +- main.go | 2 +- release/Dockerfile | 2 +- 4 files changed, 37 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..0df0c1b --- /dev/null +++ b/CHANGELOG.md @@ -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* diff --git a/README.md b/README.md index 3940abe..e006ab6 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.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 ``` diff --git a/main.go b/main.go index 087171f..7767619 100644 --- a/main.go +++ b/main.go @@ -14,7 +14,7 @@ import ( const ( Name = "go-crond" Author = "webdevops.io" - Version = "0.5.1" + Version = "0.6.0" LogPrefix = "go-crond: " ) diff --git a/release/Dockerfile b/release/Dockerfile index 1575e93..6574021 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.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