]> sourceware.org Git - automake.git/commitdiff
New version.
authorTom Tromey <tromey@redhat.com>
Sun, 10 Dec 1995 23:24:20 +0000 (23:24 +0000)
committerTom Tromey <tromey@redhat.com>
Sun, 10 Dec 1995 23:24:20 +0000 (23:24 +0000)
Don't allow distribution if NEWS file not up-to-date.

ChangeLog
Makefile.am
Makefile.in
NEWS
configure
configure.in
lib/am/Makefile.am
version.texi

index 7f92715aa64b42c5875577bca2dea022dc9608e6..1f103adbb17e679ff9c4b7ec6da83bd187ea363f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 Sun Dec 10 11:59:33 1995  Tom Tromey  <tromey@cambric.colorado.edu>
 
+       * Makefile.am (cvs-dist): Don't release unless NEWS updated.
+       Ensure 'checks' pass before release.
+
+       * configure.in (VERSION): Version 0.26.
+
        * Makefile.am (check-local): Only look at [a-z]*.am.  Fixed sense
        of 'if' test.
 
index 0b78481ec58c2abe91aa5cbe4a64dcbc931e0ca6..2c0a83529eda455deb62a509dd001ce227c3ba5e 100644 (file)
@@ -40,7 +40,13 @@ check-local: automake
 automake: automake.in
        CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
 
-# Tag before making distribution.
+# Tag before making distribution.  Also, don't make a distribution if
+# checks fail.  Also, make sure the NEWS file is up-to-date.
 cvs-dist:
+       $(MAKE) check
+       if sed 1q NEWS | grep -e "$(VERSION)"; then :; else \
+         echo "NEWS not updated; not releasing" 1>&2; \
+         exit 1;                               \
+       fi
        cvs tag `echo "Release-$(VERSION)" | sed 's/\./-/g'`
        $(MAKE) dist
index 7fe35d1d8985647695ab79ac6b61387a85574c15..acf1fc1d040222f5cb8b787a9d6fcc324451b44f 100644 (file)
@@ -307,8 +307,14 @@ check-local: automake
 automake: automake.in
        CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
 
-# Tag before making distribution.
+# Tag before making distribution.  Also, don't make a distribution if
+# checks fail.  Also, make sure the NEWS file is up-to-date.
 cvs-dist:
+       $(MAKE) check
+       if sed 1q NEWS | grep -e "$(VERSION)"; then :; else \
+         echo "NEWS not updated; not releasing" 1>&2; \
+         exit 1;                               \
+       fi
        cvs tag `echo "Release-$(VERSION)" | sed 's/\./-/g'`
        $(MAKE) dist
 
diff --git a/NEWS b/NEWS
index 27a5b30c764e4994203bd2657e239a74fe3180a8..dea0209c6a0ac5642ab71da106a5fd4691e25df7 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+New in 0.25:
+* Bug fixes.
+* Works with Perl 4 again.
+\f
 New in 0.24:
 * New uniform naming scheme.
 * --strictness option
index dd4b192ebbf9f06a7ffa8d9853b1fd661ad6c57f..396b27ffc04ff69a39345e754afc77f3b335b0f7 100755 (executable)
--- a/configure
+++ b/configure
@@ -522,7 +522,7 @@ cat >> confdefs.h <<EOF
 #define PACKAGE "$PACKAGE"
 EOF
 
-VERSION=0.25
+VERSION=0.26
 
 cat >> confdefs.h <<EOF
 #define VERSION "$VERSION"
index 7fe59d35ad8b36838c1b99f5fe9323abe842b48a..e9b8e52f095ea305cd18ec08e307c337cdd47045 100644 (file)
@@ -6,7 +6,7 @@ dnl AC_CONFIG_HEADER(config.h)
 PACKAGE=automake
 AC_SUBST(PACKAGE)
 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
-VERSION=0.25
+VERSION=0.26
 AC_SUBST(VERSION)
 AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
 ALL_LINGUAS=
index 0b78481ec58c2abe91aa5cbe4a64dcbc931e0ca6..2c0a83529eda455deb62a509dd001ce227c3ba5e 100644 (file)
@@ -40,7 +40,13 @@ check-local: automake
 automake: automake.in
        CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
 
-# Tag before making distribution.
+# Tag before making distribution.  Also, don't make a distribution if
+# checks fail.  Also, make sure the NEWS file is up-to-date.
 cvs-dist:
+       $(MAKE) check
+       if sed 1q NEWS | grep -e "$(VERSION)"; then :; else \
+         echo "NEWS not updated; not releasing" 1>&2; \
+         exit 1;                               \
+       fi
        cvs tag `echo "Release-$(VERSION)" | sed 's/\./-/g'`
        $(MAKE) dist
index 21f5a344a2c915f0d261895804aaab3879b3f458..1335b0013b08083a81ba731cfdf54e8a23c10b98 100644 (file)
@@ -1,3 +1,3 @@
 @set UPDATED 9 December
-@set EDITION 0.25
-@set VERSION 0.25
+@set EDITION 0.26
+@set VERSION 0.26
This page took 0.04192 seconds and 5 git commands to generate.