diff options
author | atsb <atsb@atsb> | 2021-08-05 10:24:44 +0200 |
---|---|---|
committer | atsb <atsb@atsb> | 2021-08-05 10:24:44 +0200 |
commit | 97cdae129d48752dad8e7a424cbcacce32a0bfd9 (patch) | |
tree | 763f9ff721ea1d11dc77640b5cc35c0a871975d1 | |
parent | 1380c5e19dcfd997159e33f56701ac99aafbb11c (diff) | |
download | mcron-1.2.1.tar.gz mcron-1.2.1.tar.bz2 mcron-1.2.1.zip |
updating for next releasev1.2.1
-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]) |