summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--Makefile.maint4
-rw-r--r--NEWS2
-rw-r--r--configure.ac2
4 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 55600128..c5c85e16 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2006-06-17 Eric Blake <ebb9@byu.net>
+ Release 1.4.4b:
+
+ * configure.ac (AC_INIT): Bump version number.
+ * NEWS: Describe changes since 1.4.4.
+ * Makefile.maint (cvs-news): Accomodate copyright line wrapping.
+
* Makefile.am (MAINTAINERCLEANFILES): Clean files added by
bootstrap.
* checks/Makefile.in (maintainer-clean): Add missing target.
diff --git a/Makefile.maint b/Makefile.maint
index bfe391eb..22cf4dee 100644
--- a/Makefile.maint
+++ b/Makefile.maint
@@ -1,6 +1,6 @@
## Makefile.maint -- Makefile rules for m4 maintainers -*-Makefile-*-
##
-## Copyright (C) 2004, 2005 Free Software Foundation
+## Copyright (C) 2004, 2005, 2006 Free Software Foundation
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
@@ -78,7 +78,7 @@ update-timestamps:
.PHONY: cvs-news
cvs-news:
## Make sure the NEWS file is up-to-date:
- @if sed '1,3d;4q' $(srcdir)/NEWS | grep -e "$(VERSION)" >/dev/null; \
+ @if sed '1,4d;5q' $(srcdir)/NEWS | grep -e "$(VERSION)" >/dev/null; \
then :; \
else \
echo "NEWS not updated; not releasing" 1>&2; \
diff --git a/NEWS b/NEWS
index 85d45522..f53fad9b 100644
--- a/NEWS
+++ b/NEWS
@@ -2,7 +2,7 @@ GNU m4 NEWS - User visible changes.
Copyright (C) 1992, 1993, 1994, 2004, 2005, 2006 Free Software
Foundation, Inc.
-Version 1.4.5 - ??? 2006, by ???
+Version 1.4.4b - 17 June 2006, by Eric Blake
* Fix a recursive push_string crashing bug, which affected changequote of
three or more characters on some compilers.
diff --git a/configure.ac b/configure.ac
index 6c966a55..4cf608a7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -18,7 +18,7 @@
# 02110-1301 USA
AC_PREREQ([2.59])
-AC_INIT([GNU M4], [1.4.4a], [bug-m4@gnu.org])
+AC_INIT([GNU M4], [1.4.4b], [bug-m4@gnu.org])
AM_INIT_AUTOMAKE([1.9.6 dist-bzip2 gnu])
PACKAGE=$PACKAGE_TARNAME; AC_SUBST([PACKAGE])
VERSION=$PACKAGE_VERSION; AC_SUBST([VERSION])