]> granicus.if.org Git - check/commitdiff
* svn merge -r383:384 ../tags/check-0.9.5/ .
authorcpickett <cpickett@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Tue, 21 Nov 2006 23:56:21 +0000 (23:56 +0000)
committercpickett <cpickett@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Tue, 21 Nov 2006 23:56:21 +0000 (23:56 +0000)
  -- Updated version to 0.9.5, along with NEWS and TODO to match.

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@385 64e312b2-a51f-0410-8e61-82d0ca0eb02a

NEWS
TODO
configure.ac

diff --git a/NEWS b/NEWS
index dbd975c74a9cebc5e29c670a5aae92ea79c3de03..bd638ef0e9cf56e65e8b1173cc0ea511db7603b8 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,17 @@
-* 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
 
diff --git a/TODO b/TODO
index 1c38cd56ed3f0598f6cc01df9baa3b6d397b3961..b053f39d974bf2b09da032f5d032ab8a042a5cdf 100644 (file)
--- a/TODO
+++ b/TODO
@@ -47,7 +47,7 @@ Build issues:
 [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:
index 1ebd3c023a9efbcf3689e0e73606be14bc381665..7831dacb24ff0cec008fafba593ee9665f3a1190 100644 (file)
@@ -3,7 +3,7 @@
 
 # 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])
@@ -18,7 +18,7 @@ AM_INIT_AUTOMAKE([-Wall -Werror gnits 1.9.6])
 
 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)