2012-03-23 difffilter-0.3.3:

	- Fix segfault in `\ No newline at end of file' sequence
	  caused by using strcat() to write to an uninitialized buffer
	  (replaced with strcpy()).

difffilter-0.3.2:

	- Fix support for `\ No newline at end of file' sequence in
	  diffs. If this indicator was not at the very end of a diff,
	  the indicator would cause difffilter to report a syntax
	  error and abort processing.

	- Fix up an example in the manpage.

	- Add missing CVS keywords entry to this NEWS file (below).

difffilter-0.3.1:

	- Support diff-block/magic header comments. For example, git's
          diff function likes to append the name of the contextual
          function or class to a diff-block header to clarify reading:
	  ``@@ -100,1 +100,1 @@ void myfunction()''

	- Fix support for diffs which only have the `+++' header
          instead of both `---' followed by a `+++'. difffilter does
          not like this syntax and _will_ `fix' it by adding the `---'
          line to diffs, but now it won't completely break diffs using
          only the +++ header.

	- Add a dependency on libstrl, which provides getline() on
          non-GNU machines (ex. macosx, BSD(?)x). getline() is a
          POSIX-required function.

	- Add mingw32 support (with the help of a sample
          AX_PRINTF_SIZE_T_FORMAT autoconf macro).

	- Fix CVS keyword change removal for CVS keywords which look
          like $Id:$ instead of $Id$ or $Id: .....$.

difffilter-0.3:

	- Instead of operating as a pure line-by-line filter,
	  difffilter now buffers input by diff block. This enables the
	  use of filters which, such as whitespace removal and
	  reducing the number of lines of context in a diff.

	- Also has a new command-line syntax. Every POSIX Basic
          Regular Expression must be given as a parameter of -e, POSIX
          Extended Regular Expressions may be given as parameters of
          -E.

	- Supports more advanced diff filename filtering with the -a
          (accept subsequent matches) and -x (reject subsequent
          matches) options.

difffilter-0.2:

	- Fixes segfault for the -h and -v parameters.

	- Adds support for a few more diff magic formats (i.e., @@ -1
          +1 @@ instead of just @@ -1,1 +1,1 @@).
