* Version 0.7.
* Updated NEWS and ChangeLog.
This commit is contained in:
parent
7426def162
commit
e03887313c
122
ChangeLog
122
ChangeLog
@ -1,3 +1,125 @@
|
||||
------------------------------------------------------------------------
|
||||
r260 | sam | 2007-01-28 01:53:19 +0100 (Sun, 28 Jan 2007) | 2 lines
|
||||
Changed paths:
|
||||
M /trunk/test
|
||||
M /trunk/test/Makefile.am
|
||||
D /trunk/test/fdcat.c
|
||||
D /trunk/test/streamcat.c
|
||||
M /trunk/test/testsuite.sh
|
||||
A /trunk/test/zzcat.c
|
||||
|
||||
* Merged fdcat and streamcat into zzcat.
|
||||
|
||||
------------------------------------------------------------------------
|
||||
r259 | sam | 2007-01-28 01:50:53 +0100 (Sun, 28 Jan 2007) | 2 lines
|
||||
Changed paths:
|
||||
M /trunk/src/lib-stream.c
|
||||
|
||||
* Print "EOF" instead of -1 when it means EOF.
|
||||
|
||||
------------------------------------------------------------------------
|
||||
r258 | sam | 2007-01-28 01:22:23 +0100 (Sun, 28 Jan 2007) | 2 lines
|
||||
Changed paths:
|
||||
M /trunk/src/lib-stream.c
|
||||
|
||||
* Oops, fixed syntax error.
|
||||
|
||||
------------------------------------------------------------------------
|
||||
r257 | sam | 2007-01-28 01:21:58 +0100 (Sun, 28 Jan 2007) | 2 lines
|
||||
Changed paths:
|
||||
M /trunk/src/lib-stream.c
|
||||
|
||||
* Better debug messages for special cases (eg. fgetc returning -1).
|
||||
|
||||
------------------------------------------------------------------------
|
||||
r256 | sam | 2007-01-27 22:40:31 +0100 (Sat, 27 Jan 2007) | 2 lines
|
||||
Changed paths:
|
||||
M /trunk/test/Makefile.am
|
||||
A /trunk/test/file-00
|
||||
A /trunk/test/file-ff
|
||||
A /trunk/test/file-random
|
||||
A /trunk/test/file-text
|
||||
M /trunk/test/testsuite.sh
|
||||
|
||||
* Updated testsuite to use our own files instead of /dev/*.
|
||||
|
||||
------------------------------------------------------------------------
|
||||
r255 | sam | 2007-01-27 20:05:46 +0100 (Sat, 27 Jan 2007) | 2 lines
|
||||
Changed paths:
|
||||
M /trunk/doc/zzuf.1
|
||||
M /trunk/src/fuzz.c
|
||||
M /trunk/src/fuzz.h
|
||||
M /trunk/src/opts.c
|
||||
M /trunk/src/opts.h
|
||||
M /trunk/src/zzuf.c
|
||||
|
||||
* Implemented -f/--fuzzing (fuzzing mode).
|
||||
|
||||
------------------------------------------------------------------------
|
||||
r254 | sam | 2007-01-27 16:13:34 +0100 (Sat, 27 Jan 2007) | 3 lines
|
||||
Changed paths:
|
||||
M /trunk/src/fd.c
|
||||
M /trunk/src/fuzz.c
|
||||
M /trunk/src/lib-stream.c
|
||||
M /trunk/src/libzzuf.h
|
||||
|
||||
* Better ungetc() implementation. Now we don't need to care about the
|
||||
fuzzing method.
|
||||
|
||||
------------------------------------------------------------------------
|
||||
r253 | sam | 2007-01-25 23:34:28 +0100 (Thu, 25 Jan 2007) | 2 lines
|
||||
Changed paths:
|
||||
M /trunk/src/debug.c
|
||||
M /trunk/src/lib-fd.c
|
||||
M /trunk/src/libzzuf.c
|
||||
M /trunk/src/libzzuf.h
|
||||
M /trunk/src/zzuf.c
|
||||
|
||||
* Carry DEBUG_FILENO in the ZZUF_DEBUG environment variable.
|
||||
|
||||
------------------------------------------------------------------------
|
||||
r252 | sam | 2007-01-25 23:07:23 +0100 (Thu, 25 Jan 2007) | 3 lines
|
||||
Changed paths:
|
||||
M /trunk/src/libzzuf.c
|
||||
|
||||
* Initialise malloc-related functions earlier. They're needed for regex
|
||||
initialisation amongst others.
|
||||
|
||||
------------------------------------------------------------------------
|
||||
r251 | sam | 2007-01-25 22:43:37 +0100 (Thu, 25 Jan 2007) | 3 lines
|
||||
Changed paths:
|
||||
M /trunk/src/lib-mem.c
|
||||
|
||||
* Put a few debug messages in malloc-related functions when they use our
|
||||
custom buffer.
|
||||
|
||||
------------------------------------------------------------------------
|
||||
r250 | sam | 2007-01-25 21:18:34 +0100 (Thu, 25 Jan 2007) | 2 lines
|
||||
Changed paths:
|
||||
M /trunk/NEWS
|
||||
|
||||
* Updated NEWS.
|
||||
|
||||
------------------------------------------------------------------------
|
||||
r249 | sam | 2007-01-25 20:55:20 +0100 (Thu, 25 Jan 2007) | 3 lines
|
||||
Changed paths:
|
||||
M /trunk/src/lib-mem.c
|
||||
M /trunk/src/libzzuf.c
|
||||
M /trunk/src/libzzuf.h
|
||||
|
||||
* Crap! Fixed memory manager initialisation. And sticking that into the
|
||||
0.6.1 tarball, no one will notice! (ha ha ha)
|
||||
|
||||
------------------------------------------------------------------------
|
||||
r248 | sam | 2007-01-25 17:56:22 +0100 (Thu, 25 Jan 2007) | 3 lines
|
||||
Changed paths:
|
||||
M /trunk/ChangeLog
|
||||
M /trunk/NEWS
|
||||
M /trunk/configure.ac
|
||||
|
||||
* Version 0.6.1.
|
||||
* Updated NEWS and ChangeLog.
|
||||
|
||||
------------------------------------------------------------------------
|
||||
r247 | sam | 2007-01-25 16:33:22 +0100 (Thu, 25 Jan 2007) | 2 lines
|
||||
Changed paths:
|
||||
|
||||
6
NEWS
6
NEWS
@ -1,5 +1,11 @@
|
||||
$Id$
|
||||
|
||||
Changes from 0.6.1 to 0.7
|
||||
|
||||
* added new fuzzing modes
|
||||
* fixed crash in regex handlers
|
||||
* improved debug messages
|
||||
|
||||
Changes from 0.6 to 0.6.1
|
||||
|
||||
* fixed bad seed offset
|
||||
|
||||
@ -1,13 +1,13 @@
|
||||
# $Id: configure.ac 98 2006-09-22 16:27:37Z sam $
|
||||
|
||||
AC_INIT(zzuf, 0.6.1)
|
||||
AC_INIT(zzuf, 0.7)
|
||||
|
||||
AC_PREREQ(2.50)
|
||||
AC_CONFIG_SRCDIR(src/zzuf.c)
|
||||
AC_CONFIG_AUX_DIR(autotools)
|
||||
AC_CANONICAL_SYSTEM
|
||||
|
||||
AM_INIT_AUTOMAKE(zzuf, 0.6.1)
|
||||
AM_INIT_AUTOMAKE(zzuf, 0.7)
|
||||
AM_CONFIG_HEADER(config.h)
|
||||
|
||||
AM_PROG_CC_C_O
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user