From: Tomas Mraz Date: Thu, 3 May 2018 16:58:09 +0000 (+0200) Subject: Release new version 1.5.2 X-Git-Tag: cronie-1.5.2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b9ec252f85987201c664697e486ff81b79a4d29c;p=cronie Release new version 1.5.2 --- diff --git a/AUTHORS b/AUTHORS index 1cbd2b5..b74605e 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,2 +1,8 @@ Original vixie-cron was written by Paul Vixie. +Significant contributors: +Marcela Mašláňová +Colin Dean +Tomáš Mráz +Marco Migliori +Sami Kerola diff --git a/ChangeLog b/ChangeLog index 7cfbbf1..94e2916 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,171 @@ +2018-05-03 Tomas Mraz + + * crontab: do not try to replace the crontab with a directory + +2018-01-24 Tomas Mraz + + * Support the MAILFROM also in anacron. + +2017-11-28 Tomas Mraz + + * Document that in range the first number must be less than second. + +2017-10-28 sgerwk + + * round time on the minute + +2017-10-28 sgerwk + + * print all jobs executed in interval + +2017-10-28 sgerwk + + * new options -l and -q + +2017-10-28 sgerwk + + * output in yaml format + +2017-10-28 sgerwk + + * print the job(s) that is going to be executed next + +2017-10-28 sgerwk + + * allow checking a time interval + +2017-10-28 sgerwk + + * print format for flags + +2017-11-02 Marco Migliori + + * cronnext can read additional crontabs from files + +2017-09-14 Tomas Mraz + + * Use proper variable types. + +2017-09-14 Tomas Mraz + + * Add myself as author. + +2017-09-14 Tomas Mraz + + * Log startup even when started in non-forking mode. + +2017-07-14 Mark Montague + + * Fix SELinux denial when running under Docker + +2017-07-01 Sami Kerola + + * build-sys: use silent build rule + +2017-06-11 Sami Kerola + + * cronnext: improve manual page + +2017-06-11 Sami Kerola + + * all: add version printing option -V + +2017-06-11 Sami Kerola + + * cronnext: use same style in usage() with other commands + +2017-06-10 Sami Kerola + + * various files: fix indentation + +2017-06-10 Sami Kerola + + * crond: never define unused cron_start_pam() + +2017-05-01 SjonHortensius + + * Add Arch Linux to list of distributions + +2017-04-28 Tomas Mraz + + * Fix misleading indentation. + +2017-04-28 Tomas Mraz + + * Make cronnext build and work with additional features enabled. + +2017-04-18 Tomas Mraz + + * Add MIME-Version header also to mails generated by anacron. + +2017-04-18 Tomas Mraz + + * Add MIME-Version header to generated mails. + +2017-03-29 Tomas Mraz + + * The output might not be mailed, make the message more precise. + +2017-03-29 Tomas Mraz + + * Allow empty environment values in crontab. + +2017-03-29 Tomáš Mráz + + * Point releases to the GitHub cronie releases page + +2017-03-29 Kristýna Streitová + + * crontab.5: Add a mention about disabling logging + +2017-03-29 Kristýna Streitová + + * Avoid creating pid files when crond doesn't fork + +2017-01-20 Tomas Mraz + + * readme.md: remove CRs + +2017-01-20 Tomas Mraz + + * Add readme.md for github + +2016-09-08 Tomas Mraz + + * Make it clear that one of the reasons for getpwnam() failure is unknown user. + +2016-09-05 Tomas Mraz + + * On some machines the power supply is named ADP0. + +2016-08-23 Tomas Mraz + + * Query power supply status directly from kernel. + +2016-06-27 Tomas Mraz + + * cronnext: Fix warnings + +2016-06-27 Tomas Mraz + + * cronnext: Print usage and error on stderr. + +2016-06-27 Marco Migliori + + * Added useful utility cronnext to find out time of the next job run. + +2016-06-23 Tomas Mraz + + * anacron: Check return value of fchdir. + +2016-06-23 Tomas Mraz + + * Release new version 1.5.1 + +2016-06-23 Tomas Mraz + + * Remove unneeded obsolete SELinux include. + 2016-06-23 Tomas Mraz * Remove unneeded obsolete SELinux includes. diff --git a/NEWS b/NEWS index 59ef9a1..680a7a6 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,13 @@ cronie NEWS -- history of user-visible changes. +Release 1.5.2 + +* cronnext: New useful utility to find out time of the next job run. +* crond: Avoid creating PID files when crond doesn't fork. +* crontab: Do not try to replace the crontab with a directory. +* crond: Log startup even when started in non-forking mode. +* Multiple small cleanups and fixes. + Release 1.5.1 * crontab: Use temporary file name that is ignored by crond. diff --git a/configure.ac b/configure.ac index 87eba2e..1c66fa9 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([cronie],[1.5.1],[mmaslano@redhat.com,tmraz@fedoraproject.org]) +AC_INIT([cronie],[1.5.2],[mmaslano@redhat.com,tmraz@fedoraproject.org]) AC_CONFIG_HEADER([config.h]) AC_PREREQ(2.60) diff --git a/man/Makefile.am b/man/Makefile.am index 2edfd97..965b8fd 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -1,4 +1,4 @@ -dist_man_MANS = crontab.1 crontab.5 cron.8 crond.8 +dist_man_MANS = crontab.1 crontab.5 cron.8 crond.8 cronnext.1 EXTRA_DIST = anacrontab.5 anacron.8 if ANACRON