Debian lenny version packages
[pkg-perl] / deb-src / libtest-harness-perl / libtest-harness-perl-3.12 / Changes
1 Revision history for Test-Harness
2
3 3.12    ****-**-**
4         - applied Steve Purkis' huge refactoring patch which adds
5           configurable factories for most of the major internal classes.
6         - applied David Wheeler's patch to allow exec to be a code
7           reference.
8         - made tests more robust in the presence of -MFoo in PERL5OPT.
9
10 3.11    2008-06-09
11         - applied Jim Keenan's patch that makes App::Prove::run return a
12           rather than exit (#33609)
13         - prove -r now recurses cwd rather than 't' by default (#33007)
14         - restored --ext switch to prove (#33848)
15         - added ignore_exit option to TAP::Parser and corresponding
16           interfaces to TAP::Harness and Test::Harness. Requested for
17           Parrot.
18         - Implemented rule based parallel scheduler.
19         - Moved filename -> display name mapping out of formatter. This
20           prevents the formatter's strip-extensions logic from stripping
21           extensions from supplied descriptions.
22         - Only strip extensions from test names if all tests have the
23           same extension. Previously we stripped extensions if all names
24           had /any/ extension making it impossible to distinguish tests
25           whose name differed only in the extension.
26         - Removed privacy test that made it impossible to subclass
27           TAP::Parser.
28         - Delayed initialisation of grammar making it easier to replace
29           the TAP::Parser stream after instantiation.
30         - Make it possible to supply import parameters to a replacement
31           harness with prove.
32         - Make it possible to replace either _grammar /or/ _stream
33           before reading from a TAP::Parser.
34
35 3.10    2008-02-26
36         - fix undefined value warnings with bleadperl.
37         - added pragma support.
38         - fault unknown TAP tokens under strict pragma.
39
40 3.09    2008-02-10
41         - support for HARNESS_PERL_SWITCHES containing things like 
42           '-e "system(shift)"'.
43         - set HARNESS_IS_VERBOSE during verbose testing.
44         - documentation fixes.
45
46 3.08    2008-02-08
47         - added support for 'out' option to
48           Test::Harness::execute_tests. See #32476. Thanks RENEEB.
49         - Fixed YAMLish handling of non-alphanumeric hash keys.
50         - Added --dry option to prove for 2.64 compatibility.
51
52 3.07    2008-01-13
53         - prove now supports HARNESS_PERL_SWITCHES.
54         - restored TEST_VERBOSE to prove.
55
56 3.06    2008-01-01
57         - Skip t/unicode.t if PERL_UNICODE set. Fixes #31731.
58           Thanks Lukas.
59         - App::Prove::State no longer complains about tests that
60           are deleted.
61         - --state=new and --state=old now consider the modification time
62           of test scripts.
63         - Made test suite core-compatible.
64
65 3.05    2007-12-09
66         - Skip unicode.t if Encode unavailable
67         - Support for .proverc files.
68         - Clarified prove documentation.
69
70 3.04    2007-12-02
71         - Fixed output leakage with really_quiet set.
72         - Progress reports for tests without plans now show
73           "143/?" instead of "143/0".
74         - Made TAP::Harness::runtests support aliases for test names.
75         - Made it possible to pass command line args to test programs
76           from prove, TAP::Harness, TAP::Parser.
77         - Added --state switch to prove.
78
79 3.03    2007-11-17
80         - Fixed some little bugs-waiting-to-happen inside
81           TAP::Parser::Grammar.
82         - Added parser_args callback to TAP::Harness.
83         - Made @INC propagation even more compatible with 2.64 so that
84           parrot still works *and* #30796 is fixed.
85
86 3.02    2007-11-15
87         - Process I/O now unbuffered, uses sysread, plays better with
88           select. Fixes #30740.
89         - Made Test::Harness @INC propagation more compatible with 2.64.
90           Was breaking Parrot's test suite.
91         - Added HARNESS_OPTIONS (#30676)
92
93 3.01    2007-11-12
94         - Fix for RHEL incpush.patch related failure.
95         - Output real time of test completion with --timer
96         - prove -b adds blib/auto to @INC
97         - made SKIP plan parsing even more liberal for pre-v13 TAP
98
99 3.00    2007-11-06
100         - Non-dev release. No changes since 2.99_09.
101
102 2.99_09 2007-11-05
103         - Implemented TODO-in-PLAN syntax for TAP version 12 and earlier.
104
105 2.99_08 2007-11-04
106         - Tiny changes. New version pushed to get some smoke coverage.
107
108 2.99_07 2007-11-01
109         - Fix for #21938: Unable to handle circular links
110         - Fix for #24926: prove -b and -l should use absolute paths
111         - Fixed prove switches. Big oops. How the hell did we miss that?
112         - Consolidated quiet, really_quiet, verbose into verbosity.
113         - Various VMS related fixes to tests
114
115 2.99_06 2007-10-30
116         - Added skip_all method to TAP::Parser.
117         - Display reason for skipped tests.
118         - make test now self tests.
119
120 2.99_05 2007-10-30
121         - Fix for occasional rogue -1 exit code on Windows.
122         - Fix for @INC handling under CPANPLUS.
123         - Added real time to prove --timer output
124         - Improved prove error message in case where 't' not found and
125           no tests named.
126
127 2.99_04 2007-10-11
128         - Fixed bug where 'All tests successful' would not be printed if bonus
129           tests are seen.
130         - Fixed bug where 'Result: FAIL' would be printed at the end of a test
131           run if there were unexpectedly succeeding tests.
132         - Added -M, -P switches to allow arbitrary modules to be loaded
133           by prove. We haven't yet defined what they'll do once they
134           load but it's a start...
135         - Added testing under simulated non-forking platforms.
136
137 2.99_03 2007-10-06
138         - Refactored all display specific code out of TAP::Harness.
139         - Relaxed strict parsing of skip plan for pre v13 TAP.
140         - Elapsed hi-res time is now displayed in integer milliseconds
141           instead of fractional seconds.
142         - prove stops running if any command-line switches are invalid.
143         - prove -v would try to print an undef.
144         - Added support for multiplexed and forked parallel tests. Use
145           prove -j 9 to run tests in parallel and prove -j 9 --fork to
146           fork. These features are experimental and currently
147           unavailable on Windows.
148         - Rationalized the management of the environment that we give to
149           test scripts (PERL5LIB, PERL5OPT, switches).
150         - Fixed handling of STDIN (we no longer close it) for test
151           scripts.
152         - Performance enhancements. Parser is now 30% - 40% faster.
153
154 2.99_02 2007-09-07
155         - Ensure prove (and App::Prove) sort any recursively
156           discovered tests
157         - It is now possible to register multiple callback handlers for
158           a particular event.
159         - Added before_runtests, after_runtests callbacks to
160           TAP::Harness.
161         - Moved logic of prove program into App::Prove.
162         - Added simple machine readable summary.
163         - Performance improvement: The processing pipeline within
164           TAP::Parser is now a closure which speeds up access to the
165           various attribtes it needs.
166         - Performance improvement: Test count spinner now updates
167           exponentially less frequently as the count increases which
168           saves a lot of I/O on big tests.
169         - More improvements in test coverage from Leif.
170         - Fixes to TAP spooling - now captures YAML blocks correctly.
171         - Fix YAMLish handling of empty arrays, hashes.
172         - Renamed TAP::Harness::Compatible to Test::Harness,
173           runtests to prove.
174         - Fixes to @INC handling. We didn't always pass the correct path
175           to subprocesses.
176         - We now observe any switches in HARNESS_PERL_SWITCHES.
177         - Changes to output formatting for greater compatibility with
178           Test::Harness 2.64.
179         - Added unicode test coverage and fixed a couple of
180           unicode issues.
181         - Additions to documentation.
182         - Added support for non-forking Perls. If forking isn't
183           available we fall back to open and disable stream merging.
184         - Added support for simulating non-forking Perls to improve our
185           test coverage.
186
187 ========================================================================
188 Version numbers below this point relate to TAP::Parser - which was the
189 name of this version of Test::Harness during its development.
190 ========================================================================
191
192 0.54
193     - Optimized I/O for common case of 'runtests -l'
194     - Croak if supplied an empty (0 lines) Perl script.
195     - Made T::P::Result::YAML return literal input YAML correctly.
196     - Merged speed-ups from speedy branch.
197
198 0.53  18 August 2007
199     - Fixed a few docs nits.
200     - Added -V (--version) switch to runtests. Suggested by markjugg on
201       Perlmonks.
202     - Fixed failing t/030-grammer.t under 5.9.5. Exact cause still
203       unknown; something to do with localisation of $1 et all I think.
204     - Fixed use of three arg open in t/compat/test-harness-compat; was
205       failing on 5.6.2.
206     - Fixed runtests --exec option. T::H wasn't passing the exec option
207       to T::P.
208     - Merged Leif Eriksen's coverage enhancing changes to 
209       t/080-aggregator.t, t/030-grammar.t
210     - Made various changes so that we test cleanly on 5.0.5.
211     - Many more coverage enhancements by Leif.
212     - Applied Michael Peters' patch to add an EOF callback to
213       TAP::Parser.
214     - Added --reverse option to runtests to run tests in reverse order.
215     - Made runtests exit with non-zero status if the test run had
216       problems.
217     - Stopped TAP::Parser::Iterator::Process from trampling on STDIN.
218
219 0.52  14 July 2007
220     - Incorporate Schwern's investigations into TAP versions.
221       Unversioned TAP is now TAP v12. The lowest explicit version number
222       that can be specified is 13.
223     - Renumbered tests to eliminate gaps.
224     - Killed execrc.  The '--exec' switch to runtests handles all of this for
225       us.
226     - Refactored T::P::Iterator into
227       T::P::Iterator::(Array|Process|Stream) so that we have a
228       process specific iterator with which to experiment with
229       STDOUT/STDERR merging.
230     - Removed vestigial exit status handling from T::P::I::Stream.
231     - Removed unused pid interface from T::P::I::Process.
232     - Fixed infinite recursion in T::P::I::Stream and added regression
233       coverage for same.
234     - Added tests for T::P::I::Process.
235     - TAP::Harness now displays the first five TAP syntax errors and
236       explains how to pass the -p flag to runtests to see them all.
237     - Added merge option to TAP::Parser::Iterator::Process,
238       TAP::Parser::Source, TAP::Parser and TAP::Harness.
239     - Added --merge option to runtests to enable STDOUT/STDERR merging.
240       This behaviour used to be the default.
241     - Made T::P::I::Process use open3 for both merged and non-merged
242       streams so that it works on Windows.
243     - Implemented Eric Wilhelm's IO::Select based multiple stream
244       handler so that STDERR is piped to us even if stream merging is
245       turned off. This tends to reduce the temporal skew between the
246       two streams so that error messages appear closer to their
247       correct location.
248     - Altered the T::P::Grammar interface so that it gets a stream
249       rather than the next line from the stream in preparation for
250       making it handle YAML diagnostics.
251     - Implemented YAML syntax. Currently YAML may only follow a
252       test result. The first line of YAML is '---' and the last
253       line is '...'.
254     - Made grammar version-aware. Different grammars may now be selected
255       depending on the TAP version being parsed.
256     - Added formatter delegate mechanism for test results.
257     - Added prototype stream based YAML(ish) parser.
258     - Added more tests for T::P::YAMLish
259     - Altered T::P::Grammar to use T::P::YAMLish
260     - Removed T::P::YAML
261     - Added raw source capture to T::P::YAMLish
262     - Added support for double quoted hash keys
263     - Added TAP::Parser::YAMLish::Writer and renamed T::P::YAMLish as
264       T::P::YAMLish::Reader.
265     - Added extra TAP::Parser::YAMLish::Writer output options
266     - Inline YAML documents must now be indented by at least one space
267     - Fixed broken dependencies in bin/prove
268     - Make library paths absolute before running tests in case tests
269       chdir before loading modules.
270     - Added libs and switches handling to T::H::Compatible. This and the
271       previous change fix [24926]
272     - Added PERLLIB to libraries stripped in _default_inc [12030]
273     - Our version of prove now handles directories containing circular
274       links correctly [21938]
275     - Set TAP_VERSION env var in Parser [11595]
276     - Added setup, teardown hooks to T::P::I::Process to facilitate the
277       setup and cleanup of the test script's environment
278     - Any additional libs added to the command line are also added to
279       PERL5LIB for the duration of a test run so that any Perl children
280       of the test script inherit the same library paths.
281     - Fixed handling of single quoted hash keys in T::P::Y::Reader
282     - Made runtests return the TAP::Parser::Aggregator
283     - Fixed t/120-harness.t has failures if TAP::Harness::Color cannot
284       load optional modules [27125] - thanks DROLSKY
285     - Fixed parsing of \# in test description  
286 0.51 12 March 2007
287     - 'execrc' file now allows 'regex' matches for tests.
288     - rename 'TAPx' --> 'TAP'
289     - Reimplemented the parse logic of TAP::Parser as a state machine.
290     - Removed various ad-hoc state variables from TAP::Parser and moved
291       their logic into the state machine.
292     - Removed now-unused is_first / is_last methods from Iterator and
293       simplified remaining logic to suit.
294     - Removed now-redundant t/140-varsource.t.
295     - Implemented TAP version syntax.
296     - Tidied TAP::Harness::Compatible documentation
297     - Removed redundant modules below TAP::Harness::Compatible
298     - Removed unused compatibility tests
299
300 0.50_07 5 March 2007
301     - Fixed bug where we erroneously checked the test number instead of number
302       of tests run to determine if we've run more tests than we planned.
303     - Add a --directives switch to 'runtests' which only shows test results
304       with directives (such as 'TODO' or 'SKIP').
305     - Removed some dead code from TAPx::Parser.
306     - Added color support for Windows using Win32::Console.
307     - Made Color::failure_output reset colors before printing
308       the trailing newline.
309     - Corrected some issues with the 'runtests' docs and removed some
310       performance notes which no longer seem accurate.
311     - Fixed bug whereby if tests without file extensions were included then
312       the spacing of the result leaders would be off.
313     - execrc file is now a YAML file.
314     - Removed white background on the test failures.  It was too garish for
315       me.  Just more proof that we need better ways of overriding color
316       support.
317     - Started work on TAPx::Harness::Compatible. Right now it's mainly just
318       a direct lift of Test::Harness to make sure the tests work.
319     - Commented out use Data::Dumper::Simple in T::Harness.pm - it's not
320       a core module.
321     - Added next_raw to TAPx::Parser::Iterator which skips any fixes for
322       quirky TAP that are implemented by next. Used to support
323       TAPx::Harness::Compatible::Iterator
324     - Applied our version number to all T::H::Compatible modules
325     - Removed T::H::C::Assert. It's documented as being private to
326       Test::Harness and we're not going to need it.
327     - Refactored runtests to call aggregate_tests to expose the
328       interface we need for the compatibility layer.
329     - Make it possible to pass an end time to summary so that it needn't
330       be called immediately after the tests complete.
331     - Moved callback handling into TAPx::Base and altered TAPx::Parser
332       to use it.
333     - Made TAPx::Harness into a subclass of TAPx::Base and implemented
334       made_parser callback.
335     - Moved the dispatch of callbacks out of run and into next so that
336       they're called when TAPx::Harness iterates through the results.
337     - Implemented PERL_TEST_HARNESS_DUMP_TAP which names a directory
338       into which the raw TAP of any tests run via TAPx::Harness will
339       be written.
340     - Rewrote the TAPx::Grammar->tokenize method to return a
341       TAPx::Parser::Result object.  Code is much cleaner now.
342     - Moved the official grammar from TAPx::Parser to TAPx::Parser::Grammar,
343       provided a link and updated the grammar.
344     - Fixed bug where a properly escaped '# TODO' line in a test description
345       would still be reported as a TODO test.
346     - Added patches/ExtUtils-MakeMaker-6.31.patch - a patch against EUMM
347       that makes test_harness use TAPx::Harness instead of Test::Harness
348       if PERL_EUMM_USE_TAPX is true and TAPx::Harness is installed. In
349       other words cause 'make test' for EUMM based models to use
350       TAPx::Harness.
351     - Added support for timer option to TAPx::Harness which causes the
352       elapsed time for each test to be displayed.
353     - Setup tapx-dev@hexten.net mailing list.
354     - Fixed accumulating @$exec bug in TAPx::Harness.
355     - Made runtests pass '--exec' option as an array.
356     - (#24679) TAPx::Harness now reports failure for tests that die
357       after completing all subtests.
358     - Added in_todo attribute on TAPx::Parser which is true while the
359       most recently seen test was a TODO.
360     - (#24728) TAPx::Harness now supresses diagnostics from failed
361       TODOs. Not sure if the semantics of this are correct yet.
362       
363 0.50_06 18 January 2007
364     - Fixed doc typo in examples/README [rt.cpan.org #24409]
365     - Colored test output is now the default for 'runtests' unless
366       you're running under windows or -t STDOUT is false.
367       [rt.cpan.org #24310]
368     - Removed the .t extension from t/source_tests/*.t since those are
369       'test tests' which caused false negatives when running recursive
370       tests. [Adrian Howard]
371     - Somewhere along the way, the exit status started working again.
372       Go figure.
373     - Factored color output so that disabling it under Windows is
374       cleaner.
375     - Added explicit switch to :crlf layer after open3 under Windows.
376       open3 defaults to raw mode resulting in spurious \r characters input
377       parsed input.
378     - Made Iterator do an explicit wait for subprocess termination.
379       Needed to get process status correctly on Windows.
380     - Fixed bug which didn't allow t/010-regression.t to be run directly
381       via Perl unless you specified Perl's full path.
382     - Removed SIG{CHLD} handler (which we shouldn't need I think because
383       we explicitly waitpid) and made binmode ':crlf' conditional on
384       IS_WIN32. On Mac OS these two things combined to expose a problem
385       which meant that output from test scripts was sometimes lost.
386     - Made t/110-source.t use File::Spec->catfile to build path to
387       test script.
388     - Made Iterator::FH init is_first, is_last to 0 rather than undef
389       for consistency with array iterator.
390     - Added t/120-varsource.t to test is_first and is_last semantics
391       over files with small numbers of lines.
392     - Added check for valid callback keys.
393     - Added t/130-results.t for Result classes.
394
395 0.50_05 15 January 2007
396     - Removed debugging code accidentally left in bin/runtests.
397     - Removed 'local $/ = ...' from the iterator.  Hopefully that will fix the
398       line ending bug, but I don't know about the wstat problem.
399
400 0.50_04 14 January 2007
401     - BACKWARDS IMCOMPATIBLE:  Renamed all '::Results' classes to '::Result'
402       because they represent a single result.
403     - Fixed bug where piping would break verbose output.
404     - IPC::Open3::open3 now takes a @command list rather than a $command
405       string.  This should make it work under Windows.
406     - Added 'stdout_sterr' sample test back to regression tests.  IPC::Open3
407       appears to make it work.
408     - Bug fix:  don't print 'All tests successful' if no tests are run.
409     - Refactored 'runtests' to make it a bit easier to follow.
410     - Bug fix:  Junk and comments now allowed before a leading plan.
411     - HARNESS_ACTIVE and HARNESS_VERSION environment variables now set.
412     - Renamed 'problems' in TAPx::Parser and TAPx::Aggregator to
413       'has_problems'.
414
415 0.50_03 08 January 2007
416
417     - Fixed bug where '-q' or '-Q' with colored tests weren't suppressing all
418       information.
419     - Fixed an annoying MANIFEST nit.
420     - Made '-h' for runtests now report help.  Using a new harness requires
421       the full --harness switch.
422     - Added 'problems' method to TAPx::Parser and TAPx::Parser::Aggregator.
423     - Deprecatd 'todo_failed' in favor of 'todo_passed'
424     - Add -I switch to runtests.
425     - Fixed runtests doc nit (smylers)
426     - Removed TAPx::Parser::Builder.
427     - A few more POD nits taken care of.
428     - Completely removed all traces of C<--merge> as IPC::Open3 seems to be
429       working.
430     - Moved the tprove* examples to examples/bin in hopes of them no longer
431       showing up in CPAN's docs.
432     - Made the 'unexpectedly succeeded' message clearer (Adam Kennedy)
433
434 0.50_02 06 January 2007
435     - Added some files I left out of the manifest (reported by Florian
436       Ragwitz).
437     - Added strict to Makefile.PL and changed @PROGRAM to @program (reported
438       Florian Ragwitz).
439
440 0.50_01 06 January 2007
441     - Added a new example which shows to how test Perl, Ruby, and URLs all at
442       the same time using 'execrc' files.
443     - Fixed the diagnostic format mangling bug.
444     - We no longer override Test::Builder to merge streams.  Instead, we go
445       ahead and use IPC::Open3.  It remains to be seen whether or not this is
446       a good idea.
447     - Fixed vms nit:  for failing tests, vms often has the 'not' on a line by
448       itself.
449     - Fixed bugs where unplanned tests were not reporting as a failure (test
450       number greater than tests planned).
451     - TAPx::Parser constructor can now take an 'exec' option to tell it what
452       to execute to create the stream (huge performance boost).
453     - Added TAPx::Parser::Source.  This allows us to run tests in just about
454       any programming language.
455     - Renamed the filename() method to source() in TAPx::Parser::Source::Perl.
456     - We now cache the @INC values found for TAPx::Parser::Source::Perl.
457     - Added two test harnesses, TAPx::Harness and TAPx::Harness::Color.
458     - Removed references to manual stream construction from TAPx::Parser
459       documentation.  Users should not (usually) need to worry about streams.
460     - Added bin/runtests utility.  This is very similar to 'prove'.
461     - Renumbered tests to make it easier to add new ones.
462     - Corrected some minor documentation nits.
463     - Makefile.PL is no longer auto-generated (it's built by hand).
464     - Fixed regression test bug where driving tests through the harness I'm
465       testing caused things to break.
466     - BUG:  exit() values are now broken.  I don't know how to capture them
467       with IPC::Open3.  However, since no one appears to be using them, this
468       might not be an issue.
469
470 0.41  12 December 2006
471     - Fixed (?) 10-regression.t test which failed on Windows.  Removed the
472       segfault test as it has no meaning on Windows.  Reported by PSINNOTT
473       <link@redbrick.dcu.ie> and fix recommended by Schwern based on his
474       Test::Harness experience.
475       http://rt.cpan.org/Ticket/Display.html?id=21624
476
477 0.40  05 December 2006
478     - Removed TAPx::Parser::Streamed and folded its functionality into
479       TAPx::Parser.
480     - Fixed bug where sometimes is_good_plan() would return a false positive
481       (exposed by refactoring).
482     - A number of tiny performance enhancements.
483
484 0.33  22 September 2006
485     - OK, I'm getting ticked off by some of the comments on Perl-QA so I
486       rushed this out the door and broke it :(  I'm backing out one test and
487       slowing down a bit.
488
489 0.32  22 September 2006
490     - Applied patch from Schwern which fixed the Builder package name (TAPx::
491       instead of TAPX:: -- stupid case-insensitive package names!).
492       [rt.cpan.org #21605]
493
494 0.31  21 September 2006
495     - Fixed bug where Carp::croak without parens could cause Perl to fail to
496       compile on some platforms. [Andreas J. Koenig]
497     - Eliminated the non-portable redirect of STDERR to STDOUT (2>&1) and
498       fixed the synchronization issue.  This involves overridding
499       Test::Builder::failure_output() in a very sneaky way.  I may have to
500       back this out.
501     - Renamed boolean methods to begin with 'is_'.  The methods they replace
502       are documented, deprecated, and will not be removed prior to version
503       1.00.
504
505 0.30  17 September 2006
506     - Fixed bug where no output would still claim to have a good plan.
507     - Fixed bug where no output would cause parser to die.
508     - Fixed bug where failing to specify a plan would be two parse errors
509       instead of one.
510     - Fixed bug where a correct plan count in an incorrect place would still
511       report as a 'good_plan'.
512     - Fixed bug where comments could accidently be misparsed as directives.
513     - Eliminated testing of internal structure of result objects.  The other
514       tests cover this.
515     - Allow hash marks in descriptions.  This was causing a problem because
516       many test suites (Regexp::Common and Perl core) allowed them to exist.
517     - Added support for SKIP directives in plans.
518     - Did some work simplifying &TAPx::Parser::_initialize.  It's not great,
519       but it's better than it was.
520     - TODO tests now always pass, regardless of actual_passed status.
521     - Removed 'use warnings' and now use -w
522     - 'switches' may now be passed to the TAPx::Parser constructor.
523     - Added 'exit' status.
524     - Added 'wait' status.
525     - Eliminated 'use base'.  This is part of the plan to make TAPx::Parser
526       compatible with older versions of Perl.
527     - Added 'source' key to the TAPx::Parser constructor.  Making new parsers
528       is now much easier.
529     - Renamed iterator first() and last() methods to is_first() and is_last().
530       Credit:  Aristotle.
531     - Planned tests != tests run is now a parse error.  It was really stupid
532       of me not to do that in the first place.
533     - Added massive regression test suite in t/100-regression.t
534     - Updated the grammar to show that comments are allowed.
535     - Comments are now permitted after an ending plan.
536
537 0.22  13 September 2006
538     - Removed buggy support for multi-line chunks from streams.  If your
539       streams or iterators return anything but single lines, this is a bug.
540     - Fixed bug whereby blank lines in TAP would confuse the parser.  Reported
541       by Torsten Schoenfeld.
542     - Added first() and last() methods to the iterator.
543     - TAPx::Parser::Source::Perl now has a 'switches' method which allows
544       switches to be passed to the perl executable running the test file.
545       This allows tprove to accept a '-l' argument to force lib/ to be
546       included in Perl's @INC.
547
548 0.21  8 September 2006
549     - Included experimental GTK interface written by Torsten Schoenfeld.
550     - Fixed bad docs in examples/tprove_color
551     - Applied patch from Shlomi Fish fixing bug where runs from one stream
552       could leak into another when bailing out.  [rt.cpan.org #21379] 
553     - Fixed some typos in the POD.
554     - Corrected the grammar to allow for a plan of "1..0" (infinite stream).
555     - Started to add proper acknowledgements.
556
557 0.20  2 September 2006
558     - Fixed bug reported by GEOFFR.  When no tap output was found, an
559       "Unitialized value" warning occurred.  [rt.cpan.org #21205]
560     - Updated tprove to now report a test failure when no tap output found.
561     - Removed examples/tprove_color2 as tprove_color now works.
562     - Vastly improved callback system and updated the docs for how to use
563       them.
564     - Changed TAPx::Parser::Source::Perl to use Symbol::gensym() instead of a
565       hard-to-guess filehandle name.
566
567 0.12  30 July 2006
568     - Added a test colorization script
569     - Callback support added.
570     - Added TAPx::Parser::Source::Perl.
571     - Added TAPx::Parser::Aggregator. 
572     - Added version numbers to all classes.
573     - Added 'todo_failed' test result and parser.
574     - 00-load.t now loads all classes instead of having individual tests load
575       their supporting classes.
576     - Changed $parser->results to $parser->next
577
578 0.11  25 July, 2006
579     - Renamed is_skip and is_todo to has_skip and has_todo.  Much less
580       confusing since a result responding true to those also responded true to
581       is_test.
582     - Added simplistic bin/tprove to run tests.  Much harder than I thought
583       and much code stolen from Test::Harness.
584     - Modified stolen iterator to fix a bug with stream handling when extra
585       newlines were encountered.
586     - Added TAPx::Parser::Iterator (stolen from Test::Harness::Iterator)
587     - Normalized internal structure of result objects.
588     - All tokens now have a 'type' key.  This greatly simplifies internals.
589     - Copied much result POD info into the main docs.
590     - Corrected the bug report URLs.
591     - Minor updates to the grammar listed in the POD.
592
593 0.10  23 July, 2006
594     - Oh my Larry, we gots docs!
595     - _parse and _tap are now private methods.
596     - Stream support has been added.
597     - Moved the grammar into its own class.
598     - Pulled remaining parser functionality out of lexer.
599     - Added type() method to Results().
600     - Parse errors no longer croak().  Instead, they are available through the
601       parse_errors() method.
602     - Added good_plan() method.
603     - tests_planned != tests_run is no longer a parse error.
604     - Renamed test_count() to tests_run().
605     - Renamed num_tests() to tests_planned().
606
607 0.03  17 July, 2006
608     - 'Bail out!' is now handled.
609     - The parser is now data driven, thus skipping a huge if/else chain
610     - We now track all TODOs, SKIPs, passes and fails by test number.
611     - Removed all non-core modules.
612     - Store original line for each TAP line.  Available through
613       $result->raw().
614     - Renamed test is_ok() to passed() and added actual_passed().  The former
615       method takes into account TODO tests and the latter returns the actual
616       pass/fail status.
617     - Fixed a bug where SKIP tests would not be identified correctly.
618
619 0.02  8 July, 2006
620     - Moved some lexer responsibility to the parser.  This will allow us to
621       eventually parse streams.
622     - Properly track passed/failed tests, even accounting for TODO.
623     - Added support for comments and unknown lines.
624     - Allow explicit and inferred test numbers to be mixed.
625     - Allow escaped hashes in the test description.
626     - Renamed to TAPx::Parser.  Will probably rename it again.
627
628 0.01  Date/time
629     - First version, unreleased on an unsuspecting world.
630     - No, you'll never know when ...