]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
maint: snapshots from `maint' are still development snapshots
authorStefano Lattarini <stefano.lattarini@gmail.com>
Thu, 22 Dec 2011 13:27:47 +0000 (14:27 +0100)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Thu, 22 Dec 2011 13:40:29 +0000 (14:40 +0100)
The maintenance-oriented development line in the `maint' branch,
while being usually pretty stable and 99% backward-compatible,
is not always right off production-quality; but until now, the
Automake package version declared in configure.ac hid this fact,
since it appeared to be the version of a stable release (e.g.,
11.1).  Fix this.

* configure.ac (AC_INIT): Bump version to "1.11.0a"

ChangeLog
configure.ac
m4/amversion.m4

index 30cd146dbc37d1cd1fb295b8a66c21067853399e..c8c7b669f482143e50d9efbc574b03c2fcb5932e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2011-12-22  Stefano Lattarini  <stefano.lattarini@gmail.com>
+
+       maint: snapshots from `maint' are still development snapshots
+       The maintenance-oriented development line in the `maint' branch,
+       while being usually pretty stable and 99% backward-compatible,
+       is not always right off production-quality; but until now, the
+       Automake package version declared in configure.ac hid this fact,
+       since it appeared to be the version of a stable release (e.g.,
+       11.1).  Fix this.
+       * configure.ac (AC_INIT): Bump version to "1.11.0a".
+
 2011-12-22  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
        configure: print proper message for test releases
index e73c16b9a11c37f5f7625aaaf26e790ac34c6faf..8b1d6851f8c46d0f9bfda393765f561896f66545 100644 (file)
@@ -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], [bug-automake@gnu.org])
+AC_INIT([GNU Automake], [1.11.0a], [bug-automake@gnu.org])
 
 m4_ifndef([AC_PACKAGE_URL],
          [AC_SUBST([PACKAGE_URL], [http://www.gnu.org/software/automake/])])
index 9fd3c1e0cdffa37af12df8f2033c0c76a71d1eb1..5f1f2b7ce39240c6103a563f7711eaf6388b231d 100644 (file)
@@ -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], [],
+m4_if([$1], [1.11.0a], [],
       [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])dnl
+[AM_AUTOMAKE_VERSION([1.11.0a])dnl
 m4_ifndef([AC_AUTOCONF_VERSION],
   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])