From: cpickett Date: Tue, 21 Nov 2006 23:56:21 +0000 (+0000) Subject: * svn merge -r383:384 ../tags/check-0.9.5/ . X-Git-Tag: 0.10.0~775 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=998188b9e2d6a3d063eda7e77a08ba035d5ddebc;p=check * svn merge -r383:384 ../tags/check-0.9.5/ . -- 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 --- diff --git a/NEWS b/NEWS index dbd975c..bd638ef 100644 --- 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 1c38cd5..b053f39 100644 --- 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: diff --git a/configure.ac b/configure.ac index 1ebd3c0..7831dac 100644 --- a/configure.ac +++ b/configure.ac @@ -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)