Changed changelog...
[dh-make-perl] / dev / i386 / libtest-warn-perl / libtest-warn-perl-0.11 / Changes
1 Revision history for Perl extension Test::Warn.
2
3 0.11  Jun 09 2008
4         - better Makefile.PL
5         - mention Test::Trap
6         - uplevel 2 changed to uplevel 1 to work with Sub::Uplevel 0.19_02
7         - small fixes
8
9 0.10  May 01 2007
10         - depend on newer version of Sub::Uplevel
11         - fixed pod error
12
13 0.09  Mar 15 2007
14         - new maintainer: Alexandr Ciornii
15         - license in Makefile.PL
16         - fixed carped.t (patch by PSINNOTT)
17         - pod.t
18
19 0.08  Tue Sep 02 2003
20         - fixed bug in warning_is, warnings_are when newlines are inside
21
22 0.07  Mon Mar 10 2003
23         - fixed self test routines
24           that it doesn't play a role what kind of file separator is used
25           (/ on *nix or \ on win)
26         - added File::Spec to the requirements
27
28 0.06  Wed Jul 31 2002
29         - used a patch given by chromatic and Schwern
30           to remove Dependancy of Switch
31         - fixed a typo in the doc
32
33 0.05  Thu Jul 25 2002
34         - implemented the warnings category feature
35           warning_like {foo()} 'syntax', "Test for any syntax warning, given by the standard perl distribution";
36         - added Tree::DAG_Node to the requirements
37
38 0.04  Tue Jul 16 2002
39         - implemented the possibility of saying
40           warning_like {foo()} {carped => ['x', 'y', 'z']}, "Warnings with x, y and z"
41           instead of
42           warning_like {foo()} [{carped => 'x'},
43                                 {carped => 'y'},
44                                 {carped => 'z'}],           "Warnings with x, y and z, too"
45         - added Dependancy to Switch
46
47 0.03  Mon Jul 15 2002
48         - removed bug that occured with some versions of perl
49           Something something like
50           use List::Util qw/first/;
51           {$warn_kind => first {"$_\n"} split /\n/, $msg};
52           where the argument to first wasn't detected as a sub block
53         - removed Dependency of List::Util
54
55 0.02  Thu Jul 11 2002
56         - implemented carped option to define a warning coming from carp
57
58 0.01  Wed Jul 10 2002
59         - first CPAN release
60         - warning_is   / warning_are implemented
61         - warning_like / warnings_like implemented