Add the following packages libalgorithm-diff-perl libspiffy-perl libtext-diff-perl...
[pkg-perl] / deb-src / libtext-diff-perl / libtext-diff-perl-0.35 / Changes
1 Changes file for Text::Diff
2
3 0.35 Tue Aug 27 13:53:23 EDT 2002
4     - Escape whitespace if a blank line is inserted or removed.  This
5       puts a "\n" in the column containing the blank line, for instance.
6
7 0.34 Sun Jul 14 07:02:51 EDT 2002
8     - Improved Table format's escaping
9         - that "\t" and "\\t" are displayed differently
10         - the entire line is escaped consistently if it is escaped
11           at all.
12
13 0.33 Mon Jul  8 16:29:01 EDT 2002
14     - Make diff() return "" instead of 0 when comparing two empty
15       things.  Patch from Rolf Grossmann <grossman@progtech.net>.
16
17 0.32 Thu Mar 14 13:37:51 EST 2002
18     - Fix escaping of all-whitespace strings.
19
20 0.31 Wed Feb  6 05:36:47 EST 2002
21     - Remove stray $SIG{__DIE__} that was confessing on every die.
22
23 0.3 Undocumented (sorry)
24
25 0.11 Mon Dec 10 06:23:00 EST 2001
26     - Remove hardcoded date string from t/general.t's test data, because
27       localtime is used to generate this in Diff.pm and the local machine's
28       timezone (and locale?) can cause the localtime for a given mtime to be
29       quite different.  Reported by  Andreas Marcel Riechert
30       <riechert@pobox.com> of cpan-testers.
31     - Start this Changes file.
32     - Added hunk_header() and hunk_footer() for symmetry in overloading.
33     - Added t/ext_format.t
34
35 0.1
36     - Initial public release.
37     - Added filename, filehandle, and string I/O options
38     - API resembles Algorithm::Diff's a bit more
39     - Reimplement output formats as classes so that external (user-supplied)
40       can be specified as class names (My::Diff::Format) and so that they may
41       be inherited from.  Should probably break out hunk_header() from hunk().
42     - Add footer() to all formats