summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkwaclaw <kwaclaw>2006-11-27 02:51:57 +0000
committerkwaclaw <kwaclaw>2006-11-27 02:51:57 +0000
commit872f64b032771d056cf2545ee5c72888857b34a0 (patch)
treefc3d71749837168eec25e304d2bff5979057e41e
parent143be960b176c90506d899430b11df5789c91c80 (diff)
downloadlibexpat-872f64b032771d056cf2545ee5c72888857b34a0.tar.gz
Preparing for release 2.0.1.
-rw-r--r--Changes13
-rw-r--r--README6
-rw-r--r--configure.in2
-rw-r--r--lib/expat.h2
4 files changed, 17 insertions, 6 deletions
diff --git a/Changes b/Changes
index 4de315c..d4c0345 100644
--- a/Changes
+++ b/Changes
@@ -1,9 +1,20 @@
-Unrelease version
+Release 2.0.1
- SF bug #1515266: The character data handler's calling of
XML_StopParser() was not handled properly; if the parser was
stopped and the handler set to NULL, the parser would
segfault. Fixed.
- Minor cleanups of the test harness.
+ - Example outline.c missed a final XML_ParserFree() call:
+ bug #1543233.
+ - Fixes and improvements for Windows platform:
+ bugs #1409451, #1476160, 1548182, 1602769.
+ - Build fixes for various platforms:
+ HP-UX, Tru64, Solaris 9: patch #1437840, bug #1196180.
+ All Unix: #1554618 (refreshed config.sub/config.guess).
+ - Added Open Watcom support: patch #1523242.
+ - Fixes to Makefile.in to have make check work correctly
+ bugs #1408143, #1535603, #1536684.
+
Release 2.0.0 Wed Jan 11 2006
- We no longer use the "check" library for C unit testing; we
diff --git a/README b/README
index 1d734cb..b94be60 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
- Expat, Release 2.0.0
+ Expat, Release 2.0.1
This is Expat, a C library for parsing XML, written by James Clark.
Expat is a stream-oriented XML parser. This means that you register
@@ -25,8 +25,8 @@ intended to be production grade software.
If you are building Expat from a check-out from the CVS repository,
you need to run a script that generates the configure script using the
GNU autoconf and libtool tools. To do this, you need to have
-autoconf 2.52 or newer and libtool 1.4 or newer. Run the script like
-this:
+autoconf 2.52 or newer and libtool 1.4 or newer (1.5 or newer preferred).
+Run the script like this:
./buildconf.sh
diff --git a/configure.in b/configure.in
index e0f88ac..c0718c3 100644
--- a/configure.in
+++ b/configure.in
@@ -45,7 +45,7 @@ dnl If the API changes incompatibly set LIBAGE back to 0
dnl
LIBCURRENT=6
-LIBREVISION=0
+LIBREVISION=1
LIBAGE=5
AC_CONFIG_HEADER(expat_config.h)
diff --git a/lib/expat.h b/lib/expat.h
index 929ac44..20a8278 100644
--- a/lib/expat.h
+++ b/lib/expat.h
@@ -1005,7 +1005,7 @@ XML_GetFeatureList(void);
*/
#define XML_MAJOR_VERSION 2
#define XML_MINOR_VERSION 0
-#define XML_MICRO_VERSION 0
+#define XML_MICRO_VERSION 1
#ifdef __cplusplus
}