From: Paul Eggert Date: Mon, 5 Jun 2006 07:45:41 +0000 (+0000) Subject: * NEWS: Version 2.3. X-Git-Tag: v2.3b~382 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/4ad3ed84f659f5ccb02e9f1ab79758d4f4a3cbe3 * NEWS: Version 2.3. * configure.ac (AC_INIT): Likewise. --- diff --git a/ChangeLog b/ChangeLog index f96983d8..c44f0e4c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-06-05 Paul Eggert + + * NEWS: Version 2.3. + * configure.ac (AC_INIT): Likewise. + 2006-05-30 Paul Eggert * data/glr.c (YYRECOVERING): Define to be a function-like macro diff --git a/NEWS b/NEWS index 54775985..3dca4fe0 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,14 @@ Bison News ---------- +Changes in version 2.3, 2006-06-05: + +* GLR grammars should now use `YYRECOVERING ()' instead of `YYRECOVERING', + for compatibility with LALR(1) grammars. + +* It is now documented that any definition of YYSTYPE or YYLTYPE should + be to a type name that does not contain parentheses or brackets. + Changes in version 2.2, 2006-05-19: * The distribution terms for all Bison-generated parsers now permit diff --git a/configure.ac b/configure.ac index 72724898..7804b023 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ # least Autoconf 2.59. AC_PREREQ(2.59) -AC_INIT([GNU Bison], [2.2a], [bug-bison@gnu.org]) +AC_INIT([GNU Bison], [2.3], [bug-bison@gnu.org]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4])