diff options
-rw-r--r-- | NEWS | 7 | ||||
-rw-r--r-- | build-aux/guix.scm | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 9 insertions, 2 deletions
@@ -1,5 +1,12 @@ GNU Mcron NEWS -*- outline -*- +* Noteworthy changes in release 1.2.1 (2021-08-05) [stable] + +** Improvements + Fixed "mcron --help" to show --stdin does not apply to files. + Updated to latest autoconf. + Changes in strings to reflect GNU Mcron and not just mcron. + * Noteworthy changes in release 1.2.0 (2020-04-22) [stable] ** Improvements diff --git a/build-aux/guix.scm b/build-aux/guix.scm index 25a281f..1b3d449 100644 --- a/build-aux/guix.scm +++ b/build-aux/guix.scm @@ -41,7 +41,7 @@ (package (inherit (specification->package "mcron")) - (version "1.2.0") + (version "1.2.1") (source (local-file (dirname %srcdir) #:recursive? #t #:select? keep-mcron-file?)) (inputs diff --git a/configure.ac b/configure.ac index 923529d..0f7cfda 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,7 @@ # along with GNU Mcron. If not, see <http://www.gnu.org/licenses/>. AC_PREREQ([2.69]) -AC_INIT([GNU Mcron],[1.2.0],[bug-mcron@gnu.org]) +AC_INIT([GNU Mcron],[1.2.1],[bug-mcron@gnu.org]) AC_CONFIG_SRCDIR([src/mcron/scripts/mcron.scm]) AC_CONFIG_AUX_DIR([build-aux]) AC_REQUIRE_AUX_FILE([test-driver.scm]) |