summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Lirzin <mthl@gnu.org>2018-02-25 20:47:15 +0100
committerMathieu Lirzin <mthl@gnu.org>2018-02-25 22:15:28 +0100
commit4f73bb80d1583441ed4a1c681a843fe4d9d5e26c (patch)
treef530fc501658a6cc29d10fa3d5d9c1c08b193766
parent89158972fb953a0428d4bd37a17e7d6cce5ee633 (diff)
downloadautomake-4f73bb80d1583441ed4a1c681a843fe4d9d5e26c.tar.gz
version 1.16v1.16
* configure.ac (AC_INIT, APIVERSION): Bump version number to 1.16. * m4/amversion.m4: Likewise (auto-updated by "make bootstrap"). * NEWS: Record release version.
-rw-r--r--NEWS2
-rw-r--r--configure.ac4
-rw-r--r--m4/amversion.m46
3 files changed, 6 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index 0014915d1..06726ee4d 100644
--- a/NEWS
+++ b/NEWS
@@ -62,7 +62,7 @@
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-New in ?.?.?:
+New in 1.16:
* Miscellaneous changes
diff --git a/configure.ac b/configure.ac
index 97d1778f8..ef379639a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -16,7 +16,7 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>.
AC_PREREQ([2.69])
-AC_INIT([GNU Automake], [1.15a], [bug-automake@gnu.org])
+AC_INIT([GNU Automake], [1.16], [bug-automake@gnu.org])
AC_CONFIG_SRCDIR([bin/automake.in])
AC_CONFIG_AUX_DIR([lib])
@@ -49,7 +49,7 @@ AC_SUBST([RELEASE_YEAR])
# The API version is the base version. We must guarantee
# compatibility for all releases with the same API version.
-APIVERSION=1.15a
+APIVERSION=1.16
AC_SUBST([APIVERSION])
AC_SUBST([pkgvdatadir], ["\${datadir}/$PACKAGE-$APIVERSION"])
diff --git a/m4/amversion.m4 b/m4/amversion.m4
index c0130257d..9e06a9ecf 100644
--- a/m4/amversion.m4
+++ b/m4/amversion.m4
@@ -12,10 +12,10 @@
# generated from the m4 files accompanying Automake X.Y.
# (This private macro should not be called outside this file.)
AC_DEFUN([AM_AUTOMAKE_VERSION],
-[am__api_version='1.15a'
+[am__api_version='1.16'
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.15a], [],
+m4_if([$1], [1.16], [],
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
])
@@ -31,7 +31,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.15a])dnl
+[AM_AUTOMAKE_VERSION([1.16])dnl
m4_ifndef([AC_AUTOCONF_VERSION],
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])