From: Stefano Lattarini Date: Wed, 25 Jan 2012 08:16:52 +0000 (+0100) Subject: Beta release 1.11.2b (will become 1.11.3) X-Git-Tag: v1.11.2b X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Ftags%2Fv1.11.2b;p=platform%2Fupstream%2Fautomake.git Beta release 1.11.2b (will become 1.11.3) * configure.ac (AC_INIT): Bump version number to 1.11.2b. * NEWS: Likewise. * doc/automake.texi (Release Statistics): Update, as suggested by "make release-stats". Signed-off-by: Stefano Lattarini --- diff --git a/NEWS b/NEWS index 06d4213..1af2b51 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -New in 1.11.2a: +New in 1.11.2b: * WARNING: Future backward-incompatibilities! @@ -66,7 +66,7 @@ New in 1.11.2a: overwriting the foo_DEPENDENCIES variable, which is normally computed by automake. -Bugs fixed in 1.11.2a: +Bugs fixed in 1.11.2b: * Bugs introduced by 1.11.2: diff --git a/configure.ac b/configure.ac index d6724e6..0d568fb 100644 --- a/configure.ac +++ b/configure.ac @@ -18,7 +18,7 @@ # along with this program. If not, see . AC_PREREQ([2.68]) -AC_INIT([GNU Automake], [1.11.2a], [bug-automake@gnu.org]) +AC_INIT([GNU Automake], [1.11.2b], [bug-automake@gnu.org]) AC_CONFIG_SRCDIR([automake.in]) AC_CONFIG_AUX_DIR([lib]) diff --git a/doc/automake.texi b/doc/automake.texi index d66825b..b309a87 100644 --- a/doc/automake.texi +++ b/doc/automake.texi @@ -13485,6 +13485,7 @@ parentheses is the number of generated test cases. @item 2009-12-07 @tab 1.10.3 @tab 7892 @tab 1089 @tab 8027 @tab 3566 (40) @tab 1535 (34) @tab 174 @tab 636 @item 2009-12-07 @tab 1.11.1 @tab 8722 @tab 1092 @tab 8292 @tab 4162 (42) @tab 1730 (37) @tab 181 @tab 739 (20) @item 2011-12-21 @tab 1.11.2 @tab 8822 @tab 1112 @tab 8330 @tab 4223 (42) @tab 1821 (38) @tab 189 @tab 915 (22) +@item 2012-01-24 @tab 1.11.2b @tab 8789 @tab 1068 @tab 8453 @tab 4280 (43) @tab 1852 (38) @tab 190 @tab 931 (22) @end multitable diff --git a/m4/amversion.m4 b/m4/amversion.m4 index d07d9e2..e616c91 100644 --- a/m4/amversion.m4 +++ b/m4/amversion.m4 @@ -18,7 +18,7 @@ AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. -m4_if([$1], [1.11.2a], [], +m4_if([$1], [1.11.2b], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) @@ -34,7 +34,7 @@ m4_define([_AM_AUTOCONF_VERSION], []) # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.11.2a])dnl +[AM_AUTOMAKE_VERSION([1.11.2b])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])