Commit 201b6c41 201b6c4154744c4ad420c6129bfc34ebbfad60a9 by Sergey Poznyakoff

Update

1 parent 9316d6ac
2006-07-22 Sergey Poznyakoff <gray@gnu.org.ua>
* configure.ac: Raise version number to 1.0.1
* NEWS: Version 1.0.1
* lib/mailcap.c (expand_string, run_test, run_mailcap): Fix memory
allocation bugs. Place all temporary strings in the obstack.
Fix coredump on `cd x<TAB>' in mail. Bug reported by
Daniel Kahn Gillmor.
......
......@@ -5,6 +5,13 @@ See the end of file for copying conditions.
Please send mailutils bug reports to <bug-mailutils@gnu.org>.
Version 1.0.1 (CVS):
** Bug fixes
* mail core dumped on tab expansion of `cd x'
* Fix memory problems in mail's `decode' command
Version 1.0:
Official release. This is the first stable release since 0.6. For a
......
......@@ -17,7 +17,7 @@ dnl You should have received a copy of the GNU General Public License along
dnl with GNU Mailutils; if not, write to the Free Software Foundation,
dnl Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
AC_INIT([GNU Mailutils], [1.0], [bug-mailutils@gnu.org], [mailutils])
AC_INIT([GNU Mailutils], [1.0.1], [bug-mailutils@gnu.org], [mailutils])
AC_CONFIG_SRCDIR([mailbox/mailbox.c])
AC_CONFIG_AUX_DIR([scripts])
AC_CANONICAL_TARGET([])
......