summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2012-02-01 11:37:49 +0100
committerStefano Lattarini <stefano.lattarini@gmail.com>2012-02-01 11:41:37 +0100
commitf79fa90e66706dc4657e00954c44d7e7a4b75b24 (patch)
tree7fc59e337b9ab45bda58789b4fd4decd72e041a8
parente031b7efa485faf6f9f8419f6540c2a6530b9a61 (diff)
downloadautomake-f79fa90e66706dc4657e00954c44d7e7a4b75b24.tar.gz
release: stable release 1.11.3v1.11.3
* configure.ac (AC_INIT): Bump version number to 1.11.3. * NEWS: Likewise. * m4/amversion.m4 (AM_AUTOMAKE_VERSION): Likewise. * doc/automake.texi (Release Statistics): Update, as suggested by "make release-stats".
-rw-r--r--NEWS4
-rw-r--r--configure.ac2
-rw-r--r--doc/automake.texi2
-rw-r--r--m4/amversion.m44
4 files changed, 6 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index 9a09c8487..8200f34d3 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-New in 1.11.2c:
+New in 1.11.3:
* WARNING: Future backward-incompatibilities!
@@ -66,7 +66,7 @@ New in 1.11.2c:
overwriting the foo_DEPENDENCIES variable, which is normally computed
by automake.
-Bugs fixed in 1.11.2c:
+Bugs fixed in 1.11.3:
* Bugs introduced by 1.11.2:
diff --git a/configure.ac b/configure.ac
index 7c902eb19..cbb8ab3fb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -18,7 +18,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
AC_PREREQ([2.68])
-AC_INIT([GNU Automake], [1.11.2c], [bug-automake@gnu.org])
+AC_INIT([GNU Automake], [1.11.3], [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 b309a8770..db9a5ba97 100644
--- a/doc/automake.texi
+++ b/doc/automake.texi
@@ -13485,7 +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)
+@item 2012-02-01 @tab 1.11.3 @tab 8790 @tab 1068 @tab 8453 @tab 4280 (42) @tab 1852 (38) @tab 190 @tab 932 (22)
@end multitable
diff --git a/m4/amversion.m4 b/m4/amversion.m4
index 9a914c1dd..baaeedc5a 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.2c], [],
+m4_if([$1], [1.11.3], [],
[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.2c])dnl
+[AM_AUTOMAKE_VERSION([1.11.3])dnl
m4_ifndef([AC_AUTOCONF_VERSION],
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])