-* Changed loop test iteration variable from i to _i.
+Tue, Nov 21, 2006: Released Check 0.9.5
+
+* Fixed code coverage support to work with gcc4 and buggy libtool.
+
+* Changed loop test iteration variable from i to _i. Added example of
+ loop test usage to documentation.
+
+* Fixed distcheck target by adding SVNChangeLog to EXTRA_DIST.
+
+* Fixed signal string problem in tests. Strings differed between
+ OSes, now we use strsignal(). Fixes Sourceforge bug #1539828.
+
+* Fixed problem with process group ID, especially visible on Solaris
+ and LynxOS. Fixes Sourceforge bugs #1407360 and #1539828.
Fri, Oct 13, 2006: Released Check 0.9.4
[0.9.4] * Make sure libcheck.(l)a works as a dependency, don't call $(MAKE)
[0.9.4] * Build tests/ dirs after everything else
[0.9.4] * Fix AM_PATH_CHECK by deprecating it; use pkg-config instead
-[0.9.5] * make Check pass its own unit tests: make distcheck fails
+[ ] * make Check pass its own unit tests: make (dist)check can fail.
[ ] * use stricter CFLAGS for compiling Check
Check source code:
# Prelude.
AC_PREREQ([2.59])
-AC_INIT([Check], [0.9.4], [check-devel@lists.sourceforge.net])
+AC_INIT([Check], [0.9.5], [check-devel@lists.sourceforge.net])
# unique source file --- primitive safety check
AC_CONFIG_SRCDIR([src/check.c])
CHECK_MAJOR_VERSION=0
CHECK_MINOR_VERSION=9
-CHECK_MICRO_VERSION=4
+CHECK_MICRO_VERSION=5
CHECK_VERSION=$CHECK_MAJOR_VERSION.$CHECK_MINOR_VERSION.$CHECK_MICRO_VERSION
AC_SUBST(CHECK_MAJOR_VERSION)